package info.oais.interfaces.infomodel.poss1AccessRights;
import  info.oais.interfaces.infomodel.AccessRightsInformation;


/**
 * This is a simple way to provide interfaces methods for AccessRightsInformation.
 * It has the encoding for the rights e.g. the Rights language, as well as the text which holds the rights. 
 * @author David
 * @version 1.0
 * @since 06-Sep-2021 15:59:45
 */
public interface AccessRightsPoss1 extends AccessRightsInformation {

	/**
	 * Method to get the RightsEncoding.
	 * @return The RightsEncoding of the AccessRights.
	 */
	public String getRightsEncodingPoss1();
	/**
	 * Method to get the RightsTextPoss1.
	 * @return The RightsText.
	 */
	public String getRightsTextPoss1();

	/**
	 * Set the RightsEncodingPoss1.
	 * @param rightsEncoding    The RightsEncodingPoss1
	 */
	public void setRightsEncodingInt1(String rightsEncoding);

	/**
	 * Set the RightsTextInt1.
	 * @param rightsText    The RightsTextInt1.
	 */
	public void setRightsTextPoss1(String rightsText);
	

	



}