Package de.uplanet.lucy.server.newsagent
Class IdentityFilter
java.lang.Object
de.uplanet.lucy.server.newsagent.AbstractFilter
de.uplanet.lucy.server.newsagent.IdentityFilter
- All Implemented Interfaces:
IFilter
This filter actually performs no filtering.
All items of the source collection are copied to the filtered collection.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidDo the filtering, operating on array lists.booleanIndicates if post-processing is needed after SQL retrieval.booleanDecide if the given message passes the filter.sqlQuery()A SQL query for identity filtering, actuallynull.Methods inherited from class de.uplanet.lucy.server.newsagent.AbstractFilter
forConnection, forUser
-
Constructor Details
-
IdentityFilter
public IdentityFilter()
-
-
Method Details
-
sqlQuery
A SQL query for identity filtering, actuallynull.- Returns:
null.- See Also:
-
needsSqlPostProcessing
public boolean needsSqlPostProcessing()Description copied from interface:IFilterIndicates if post-processing is needed after SQL retrieval.- Returns:
- Always
false. - See Also:
-
pass
Decide if the given message passes the filter.- Parameters:
p_message- The message to be filtered.- Returns:
truefor all non-nullmessages orfalseif the message parameter isnull.- See Also:
-
filter
Description copied from interface:IFilterDo the filtering, operating on array lists.- Specified by:
filterin interfaceIFilter- Overrides:
filterin classAbstractFilter- Parameters:
p_from- Collection of messages to be filtered.p_to- The filtered collection.
-