package info.oais.interfaces.infomodel;

// import java.io.*;
// import java.util.*;


/**
 * An object composed of a set of bit sequences. [OAIS]
 * @author David
 * @version 1.0
 * @since 06-Sep-2021 15:59:45
 */
public interface DigitalObject extends DataObject {

	
	/** 
	 * Potential interface which is pretty close to to OAIS definition 
	 * BUT decided NOT to use this since UML would be too JAVA specific.
	 * 
	 * @return The set of byte sequences which make up the DigitalObject.
	 * public Set<InputStream> getDigital();
	 * 
	 * Set the set of byte sequences.
	 * 
	 * @param sd The Set of byte sequences which make up the DigitalObject.
	 * public void setDigital(Set<InputStream> sd);
	*/
	
}