package eu.dnetlib.enabling.aas.secprof;

/**
 * Contains information about security profile identifier location.
 * 
 * @author mhorst
 * 
 */
public class ProfileIdentifierLocation {

	private String profileKind;

	private String profileType;

	private String path;

	public String getPath() {
		return path;
	}

	public void setPath(String path) {
		this.path = path;
	}

	public String getProfileKind() {
		return profileKind;
	}

	public void setProfileKind(String profileKind) {
		this.profileKind = profileKind;
	}

	public String getProfileType() {
		return profileType;
	}

	public void setProfileType(String profileType) {
		this.profileType = profileType;
	}

}
