This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


javax.xml.ws
class WebServiceFeature

java.lang.Object extended by javax.xml.ws.WebServiceFeature
Direct Known Subclasses:
AddressingFeature, MTOMFeature, RespectBindingFeature

public abstract class WebServiceFeature
extends Object

A WebServiceFeature is used to represent a feature that can be enabled or disabled for a web service.

The JAX-WS specification will define some standard features and JAX-WS implementors are free to define additional features if necessary. Vendor specific features may not be portable so caution should be used when using them. Each Feature definition MUST define a public static final String ID that can be used in the Feature annotation to refer to the feature. This ID MUST be unique across all features of all vendors. When defining a vendor specific feature ID, use a vendor specific namespace in the ID string.


Field Summary
protected boolean enabled
          Specifies if the feature is enabled or disabled
 
Constructor Summary
protected

          
 
Method Summary
abstract String

          Get the unique identifier for this WebServiceFeature.
 boolean

          Returns true if this feature is enabled.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

enabled

protected boolean enabled
Specifies if the feature is enabled or disabled
Constructor Detail

WebServiceFeature

protected WebServiceFeature()
Method Detail

getID

public abstract String getID()
Get the unique identifier for this WebServiceFeature.

Returns:
the unique identifier for this feature.

isEnabled

public boolean isEnabled()
Returns true if this feature is enabled.

Returns:
true if and only if the feature is enabled .


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.