package info.oais.interfaces.infomodel;


/**
 * The information intended for use by Access Aids. It is a type of Information
 * Object.  [OAIS]
 * @author David
 * @version 1.0
 * @since 06-Sep-2021 15:59:46
 */
public interface PackageDescription extends InformationObject  {

	/**
	 * Get the PackageDescription as a String.
	 * 
	 * @return PackageDescription as a String.
	 */
	public String getString();
	
	/**
	 * Set the String value for the PackageDescription.
	 * 
	 * @param desc Set the String for the PackageDescription.
	 */
	public void setString(String desc);

}