1 22 package javax.xml.registry.infomodel; 23 24 import javax.activation.DataHandler ; 25 import javax.xml.registry.JAXRException ; 26 27 31 public interface ExtrinsicObject 32 extends RegistryEntry  33 { 34 public String getMimeType() throws JAXRException ; 35 public DataHandler getRepositoryItem() throws JAXRException ; 36 public boolean isOpaque() throws JAXRException ; 37 public void setMimeType(String mimeType) throws JAXRException ; 38 public void setOpaque(boolean flag) throws JAXRException ; 39 public void setRepositoryItem(DataHandler item) throws JAXRException ; 40 41 } 42 | Popular Tags |