package info.oais.interfaces.infomodel;


/**
 * The information that documents the relationships of the Content Data Object to
 * its environment. This includes why the Content Data Object was created and how
 * it relates to other Content Data Objects. [OAIS]
 * @author David
 * @version 1.0
 * @since 06-Sep-2021 15:59:45
 */
public interface ContextInformation extends InformationObject {

	/**
	 * Get the ContextInformation as a String.
	 * 
	 * @return ContextInformation as a String.
	 */
	public String getString();
	
	/**
	 * Set the String value for the ContextInformation.
	 * 
	 * @param desc Set the String for the ContextInformation.
	 */
	public void setString(String desc);
}