1 22 package javax.xml.registry.infomodel; 23 24 import java.util.Collection ; 25 import javax.xml.registry.JAXRException ; 26 27 31 public interface ServiceBinding 32 extends RegistryObject , URIValidator 33 { 34 public void addSpecificationLink(SpecificationLink specificationLink) throws JAXRException ; 35 public void addSpecificationLinks(Collection specificationLinks) throws JAXRException ; 36 public String getAccessURI() throws JAXRException ; 37 public Service getService() throws JAXRException ; 38 public Collection getSpecificationLinks() throws JAXRException ; 39 public ServiceBinding getTargetBinding() throws JAXRException ; 40 public void removeSpecificationLink(SpecificationLink specificationLink) throws JAXRException ; 41 public void removeSpecificationLinks(Collection specificationLinks) throws JAXRException ; 42 public void setAccessURI(String uri) throws JAXRException ; 43 public void setTargetBinding(ServiceBinding binding) throws JAXRException ; 44 45 } 46 | Popular Tags |