public enum JaxRSFeature extends Enum<JaxRSFeature> implements ConfigFeature
Enum Constant and Description |
---|
ADD_NO_SNIFF_HEADER
Feature that can be enabled to make provider automatically
add "nosniff" (see
this entry
for details
|
ALLOW_EMPTY_INPUT
Feature related to
Issue #49:
whether empty input is considered legal or not.
|
Modifier and Type | Method and Description |
---|---|
static int |
collectDefaults() |
boolean |
enabledByDefault()
Accessor for checking whether this feature is enabled by default.
|
boolean |
enabledIn(int flags) |
int |
getMask()
Returns bit mask for this feature instance
|
static JaxRSFeature |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JaxRSFeature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JaxRSFeature ALLOW_EMPTY_INPUT
IOException
will be thrown.
NOTE: in case of JAX-RS 2.0, specific exception will be javax.ws.rs.core.NoContentException
;
but this is not defined in JAX-RS 1.x.
public static final JaxRSFeature ADD_NO_SNIFF_HEADER
Feature is disabled by default.
public static JaxRSFeature[] values()
for (JaxRSFeature c : JaxRSFeature.values()) System.out.println(c);
public static JaxRSFeature valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static int collectDefaults()
public boolean enabledByDefault()
ConfigFeature
enabledByDefault
in interface ConfigFeature
public int getMask()
ConfigFeature
getMask
in interface ConfigFeature
public boolean enabledIn(int flags)
Copyright © 2016 JBoss by Red Hat. All rights reserved.