/**
 * Copyright 2008-2009 DRIVER PROJECT (Bielefeld University)
 * Original author: Marek Horst (ICM UW)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package eu.dnetlib.common.profile;

import java.util.List;

/**
 * Profile header model representation.
 * @author <a href="mailto:marek.imialek at uni-bielefeld.de">Marek Imialek</a>
 * @version 0.0.1 
 *
 */
public class ProfileHeader {
	
	private String resourceIdentifier;
	private String resourceType;
	private String resourceKind;
	private String resourceURI;
	private String dateOfCreation;
	private String parentId;
	private String parentType = "";
	private List<Protocol> protocols;
	
	/**
	 * Default constructor.
	 * @param resourceIdentifier
	 * @param resourceType
	 * @param resourceKind
	 */
	public ProfileHeader(String resourceIdentifier,
			String resourceType, String resourceKind) {
		this.resourceIdentifier = resourceIdentifier;
		this.resourceType = resourceType;
		this.resourceKind = resourceKind;
	}
	
	public String getDateOfCreation() {
		return dateOfCreation;
	}
	public void setDateOfCreation(String dateOfCreation) {
		this.dateOfCreation = dateOfCreation;
	}
	public String getParentId() {
		return parentId;
	}
	public void setParentId(String parentId) {
		this.parentId = parentId;
	}
	public List<Protocol> getProtocols() {
		return protocols;
	}
	public void setProtocols(List<Protocol> protocols) {
		this.protocols = protocols;
	}
	public String getResourceIdentifier() {
		return resourceIdentifier;
	}
	public void setResourceIdentifier(String resourceIdentifier) {
		this.resourceIdentifier = resourceIdentifier;
	}
	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 getResourceURI() {
		return resourceURI;
	}
	public void setResourceURI(String resourceURI) {
		this.resourceURI = resourceURI;
	}
	public String getParentType() {
		return parentType;
	}
	public void setParentType(String parentType) {
		this.parentType = parentType;
	}
	
}
