package eu.dnetlib.enabling.aas.wrappers;


/**
 * Header part of a ResourceProfile.
 * @author mhorst
 *
 */
public class HeaderPart {

	private String profId = "";
	private String resourceType = "";
	private String resourceKind = "";
	private String resourceURI = "";
	private String dateOfCreation = "";
	
	
	public String getProfId() {
		return profId;
	}

	public void setProfId(String profId) {
		this.profId = profId;
	}

	public String getResourceKind() {
		return resourceKind;
	}

	public void setResourceKind(String resourceKind) {
		this.resourceKind = resourceKind;
	}

	public String getResourceType() {
		return resourceType;
	}

	public void setResourceType(String resourceType) {
		this.resourceType = resourceType;
	}

	public String getDateOfCreation() {
		return dateOfCreation;
	}

	public void setDateOfCreation(String dateOfCreation) {
		this.dateOfCreation = dateOfCreation;
	}

	public String getResourceURI() {
		return resourceURI;
	}

	public void setResourceURI(String resourceURI) {
		this.resourceURI = resourceURI;
	}
}
