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