package info.oais.interfaces.infomodel.identifiers;

import info.oais.interfaces.infomodel.*;

/**
 * An Identifier which points to a DataObject.
 * @author David
 * @version 1.0
 * @since 06-Sep-2021 15:59:45
 */
public interface DigitalObjectId extends Identifier {
	
	/**
	 * Get the DataObject.
	 * 
	 * @return	the DataObject
	 */
	public DataObject getDataObject();
	
	/**
	 * Set the DataObject.
	 * 
	 * @param dobj	DataObject
	 */
	public void setDataObject(DataObject dobj);


}