/**
 * 
 */
package info.oais.interfaces.infomodel.identifiers;
import  info.oais.interfaces.infomodel.Identifier;
import  info.oais.interfaces.infomodel.*;


/**
 * An Identifier which points to a RepresentationInformationNetwork Object.
 * @author David
 * @version 1.0
 * @since 06-Sep-2021 15:59:46
 */
public interface RepInfoNetworkId extends Identifier {

	/**
	 * Get the RepInfo.
	 * 
	 * @return	the RepInfoNetwork
	 */
	public RepresentationInformationNetwork getRepInfo();
	
	/**
	 * Set the ID for the RepInfo.
	 * 
	 * @param rin	the RepInfo
	 */
	public void setRepresentationInformationNetwork(RepresentationInformationNetwork rin);


}