Class WebServiceFeature

java.lang.Object
jakarta.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 Jakarta XML Web Services specification will define some standard features and Jakarta XML Web Services 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.

See Also:
  • Field Summary Link icon

    Fields
    Modifier and Type
    Field
    Description
    protected boolean
    Specifies if the feature is enabled or disabled
  • Constructor Summary Link icon

    Constructors
    Modifier
    Constructor
    Description
    protected
    Default constructor.
  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    abstract String
    Get the unique identifier for this WebServiceFeature.
    boolean
    Returns true if this feature is enabled.

    Methods inherited from class java.lang.Object Link icon

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details Link icon

    • enabled Link icon

      protected boolean enabled
      Specifies if the feature is enabled or disabled
  • Constructor Details Link icon

    • WebServiceFeature Link icon

      protected WebServiceFeature()
      Default constructor.
  • Method Details Link icon

    • getID Link icon

      public abstract String getID()
      Get the unique identifier for this WebServiceFeature.
      Returns:
      the unique identifier for this feature.
    • isEnabled Link icon

      public boolean isEnabled()
      Returns true if this feature is enabled.
      Returns:
      true if and only if the feature is enabled .