Interface EntityProcessor
-
- All Known Implementing Classes:
AbstractEntityProcessor
,DefaultEntityProcessor
,EntityFilteringProcessor
,SecurityEntityProcessor
,SelectableEntityProcessor
@Contract public interface EntityProcessor
Contract supposed to process entity classes for Entity Data Filtering. Implementations will be given acontext
providing necessary information to process particularcontext type
. Contexts are created for: class / properties / accessors.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
EntityProcessor.Result
Result type of processing an context.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EntityProcessor.Result
process(EntityProcessorContext context)
Process given (class/property/accessor)context
by modifying providedEntityGraph
.
-
-
-
Method Detail
-
process
EntityProcessor.Result process(EntityProcessorContext context)
Process given (class/property/accessor)context
by modifying providedEntityGraph
.- Parameters:
context
- context to be processed.- Returns:
- result of processing a context.
-
-