1 5 6 package javax.xml.ws; 7 8 import javax.xml.bind.JAXBContext; 9 import javax.xml.namespace.QName ; 10 import javax.xml.ws.WebServiceFeature; 11 import javax.xml.ws.WebServiceException; 12 import javax.xml.ws.spi.Provider; 13 14 74 public final class RespectBindingFeature extends WebServiceFeature { 75 79 public static final String ID = "javax.xml.ws.RespectBindingFeature"; 80 81 82 86 public RespectBindingFeature() { 87 this.enabled = true; 88 } 89 90 96 public RespectBindingFeature(boolean enabled) { 97 this.enabled = enabled; 98 } 99 100 103 public String getID() { 104 return ID; 105 } 106 } 107 | Popular Tags |