package info.oais.interfaces.infomodel;


/**
 * An Information Object which is a set of information, consisting primarily of
 * Package Descriptions, which is provided to Data Management to support the
 * finding, ordering, and retrieving of OAIS information holdings by Consumers.
 * @author David
 * @version 1.0
 * @since 06-Sep-2021 15:59:45
 */
public interface DescriptiveInformation extends InformationObject {

	/**
	 * Get the DescriptiveInformation as a String.
	 * 
	 * @return DescriptiveInformation as a String.
	 */
	public String getString();
	
	/**
	 * Set the String value for the DescriptiveInformation.
	 * 
	 * @param desc Set the String for the DescriptiveInformation.
	 */
	public void setString(String desc);
}