package eu.dnetlib.dlms.epub;

/**
 * Instances of this class represent sets to be created. This class holds all relevant information user would like to
 * supply when creating a Set.
 * 
 * @author alessia
 */
public class SetToCreate {

	/** Mandatory name of the set. */
	private String setName;
	/** Mandatory name of the type of the set. */
	private String typeName;
	/** Optional info about the set. */
	private String info;

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

	public String getSetName() {
		return this.setName;
	}

	public void setTypeName(final String typeName) {
		this.typeName = typeName;
	}

	public String getTypeName() {
		return this.typeName;
	}

	public void setInfo(final String info) {
		this.info = info;
	}

	public String getInfo() {
		return this.info;
	}
}
