package org.restlet.resource;

import org.restlet.util.WrapperRepresentation;

public class PartRepresentation extends WrapperRepresentation {

    private String name;

    public PartRepresentation(String name, Representation wrappedRepresentation) {
        super(wrappedRepresentation);
        this.name = name;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

}
