1 22 package javax.xml.registry.infomodel; 23 24 import javax.xml.registry.JAXRException ; 25 26 30 public interface Classification 31 extends RegistryObject 32 { 33 public abstract ClassificationScheme getClassificationScheme() throws JAXRException ; 34 35 public abstract RegistryObject getClassifiedObject() throws JAXRException ; 36 37 public abstract Concept getConcept() throws JAXRException ; 38 39 public abstract String getValue() throws JAXRException ; 40 41 public abstract boolean isExternal() throws JAXRException ; 42 43 public abstract void setClassificationScheme(ClassificationScheme classificationScheme) 44 throws JAXRException ; 45 46 public abstract void setClassifiedObject(RegistryObject classifiedObject) 47 throws JAXRException ; 48 49 public abstract void setConcept(Concept concept) 50 throws JAXRException ; 51 52 public abstract void setValue(String value) 53 throws JAXRException ; 54 55 } 56 | Popular Tags |