- 
@Target(ANNOTATION_TYPE) @Retention(RUNTIME) @Documented public @interface WebServiceFeatureAnnotation
Annotation used to identify other annotations as aWebServiceFeature.Each
WebServiceFeatureannotation annotated with this annotation MUST contain anenabledproperty of typebooleanwith a default value oftrue.Jakarta XML Web Services defines the following
WebServiceFeatureannotations (Addressing,MTOM,RespectBinding), however, an implementation may define vendors specific annotations for other features.Annotations annotated with
WebServiceFeatureAnnotationMUST have the same @Target ofWebServiceRefannotation, so that the resulting feature annotation can be used in conjunction with theWebServiceRefannotation if necessary.If a Jakarta XML Web Services implementation encounters an annotation annotated with the
WebServiceFeatureAnnotationthat it does not recognize/support an error MUST be given.- See Also:
 Addressing,MTOM,RespectBinding
 
- 
- 
Required Element Summary
Required Elements Modifier and Type Required Element Description Class<? extends WebServiceFeature>beanTheWebServiceFeaturebean that is associated with theWebServiceFeatureannotationStringidUnique identifier for the WebServiceFeature. 
 - 
 
- 
- 
Element Detail
- 
id
String id
Unique identifier for the WebServiceFeature. This identifier MUST be unique across all implementations of Jakarta XML Web Services.- Returns:
 - unique identifier for the WebServiceFeature
 
 
 - 
 
- 
- 
bean
Class<? extends WebServiceFeature> bean
TheWebServiceFeaturebean that is associated with theWebServiceFeatureannotation- Returns:
 - the 
WebServiceFeaturebean 
 
 - 
 
 -