org.glassfish.jersey.server.wadl
Class WadlFeature
java.lang.Object
org.glassfish.jersey.server.wadl.WadlFeature
- All Implemented Interfaces:
- Feature
public class WadlFeature
- extends Object
- implements Feature
Feature enabling WADL processing. The feature registers providers and binders needed to enable wadl in the
jersey application. One of the providers is wadl model processor
which enhances
current resources by additional wadl resources like /application.wadl
and wadl options method.
- Author:
- Miroslav Fuksa (miroslav.fuksa at oracle.com)
Method Summary |
boolean |
configure(FeatureContext context)
A call-back method called when the feature is to be enabled in a given
runtime configuration scope. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
WadlFeature
public WadlFeature()
configure
public boolean configure(FeatureContext context)
- Description copied from interface:
Feature
- A call-back method called when the feature is to be enabled in a given
runtime configuration scope.
The responsibility of the feature is to properly update the supplied runtime configuration context
and return
true
if the feature was successfully enabled or false
otherwise.
Note that under some circumstances the feature may decide not to enable itself, which
is indicated by returning false
. In such case the configuration context does
not add the feature to the collection of enabled features and a subsequent call to
Configuration.isEnabled(Feature)
or Configuration.isEnabled(Class)
method
would return false
.
- Specified by:
configure
in interface Feature
- Parameters:
context
- configurable context in which the feature should be enabled.
- Returns:
true
if the feature was successfully enabled, false
otherwise.
Copyright © 2007-2014, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.