Class EntityResultAll
- java.lang.Object
-
- com.priint.pubserver.comet.bridge.datamapping.EntityResultAll
-
- All Implemented Interfaces:
EntityResultFilter
public class EntityResultAll extends java.lang.Object implements EntityResultFilter
EntityResultFilter implementation, which is used, when no entities should be hidden.
-
-
Constructor Summary
Constructors Constructor Description EntityResultAll()Constructs a entity filter implementation , which filters no data.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T extends EntityData>
java.util.List<T>filterEntities(java.util.List<T> in)Filters a list of entities.
-
-
-
Method Detail
-
filterEntities
public <T extends EntityData> java.util.List<T> filterEntities(java.util.List<T> in)
Description copied from interface:EntityResultFilterFilters a list of entities.
Filters a list of entities. Usually, the filter instructions are derived from the project product panel configuration. There should be no need to implement own filter methods, but probably, as shown in the class documentation, use the project default filter in custom data mapping implementations
- Specified by:
filterEntitiesin interfaceEntityResultFilter- Type Parameters:
T- the type parameter- Parameters:
in- list to filter- Returns:
- the filtered list
-
-