package eu.dnetlib.dlms.epub;

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

	/** Names of the two sets involved by relations inside the Set corresponding to this instance. */
	private String fstSetName, sndSetName;

	public void setFstSetName(final String fstSetName) {
		this.fstSetName = fstSetName;
	}

	public String getFstSetName() {
		return this.fstSetName;
	}

	public void setSndSetName(final String sndSetName) {
		this.sndSetName = sndSetName;
	}

	public String getSndSetName() {
		return this.sndSetName;
	}
}
