
package info.oais.interfaces.infomodel;

/**
 * 
 * A type of Package Description that is specialized to provide information about an Archival Information Collection 
 * (or an Access Collection) for use by Access Aids [OAIS].
 * 
 * @author David
 *
 */
public interface CollectionDescription extends PackageDescription {
	
	/**
	 * Get the CollectionDescription as a String.
	 * 
	 * @return CollectionDescription as a String.
	 */
	public String getString();
	
	/**
	 * Set the String value for the CollectionDescription.
	 * 
	 * @param desc Set the String for the CollectionDescription.
	 */
	public void setString(String desc);

}
