Package | Description |
---|---|
org.glassfish.jersey.message.filtering |
Support for Entity Data Filtering in Jersey.
|
org.glassfish.jersey.message.filtering.spi |
SPI for Entity Data Filtering in Jersey.
|
Modifier and Type | Method and Description |
---|---|
EntityProcessor.Result |
EntityFilteringProcessor.process(EntityProcessorContext context) |
EntityProcessor.Result |
DefaultEntityProcessor.process(EntityProcessorContext context) |
protected EntityProcessor.Result |
SecurityEntityProcessor.process(java.lang.String fieldName,
java.lang.Class<?> fieldClass,
java.lang.annotation.Annotation[] fieldAnnotations,
java.lang.annotation.Annotation[] annotations,
EntityGraph graph) |
protected EntityProcessor.Result |
EntityFilteringProcessor.process(java.lang.String field,
java.lang.Class<?> fieldClass,
java.lang.annotation.Annotation[] fieldAnnotations,
java.lang.annotation.Annotation[] annotations,
EntityGraph graph) |
protected EntityProcessor.Result |
SelectableEntityProcessor.process(java.lang.String fieldName,
java.lang.Class<?> fieldClass,
java.lang.annotation.Annotation[] fieldAnnotations,
java.lang.annotation.Annotation[] annotations,
EntityGraph graph) |
Modifier and Type | Method and Description |
---|---|
EntityProcessor.Result |
AbstractEntityProcessor.process(EntityProcessorContext context) |
EntityProcessor.Result |
EntityProcessor.process(EntityProcessorContext context)
Process given (class/property/accessor)
context by modifying provided EntityGraph . |
protected EntityProcessor.Result |
AbstractEntityProcessor.process(java.lang.String fieldName,
java.lang.Class<?> fieldClass,
java.lang.annotation.Annotation[] fieldAnnotations,
java.lang.annotation.Annotation[] annotations,
EntityGraph graph)
Method is called from the default implementation of
AbstractEntityProcessor.process(org.glassfish.jersey.message.filtering.spi.EntityProcessorContext) and is supposed to be overridden by
custom implementations of this class. |
static EntityProcessor.Result |
EntityProcessor.Result.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EntityProcessor.Result[] |
EntityProcessor.Result.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|