Package de.uplanet.lucy.server.newsagent
Class RecipientFilter
java.lang.Object
de.uplanet.lucy.server.newsagent.AbstractFilter
de.uplanet.lucy.server.newsagent.RecipientFilter
- All Implemented Interfaces:
IFilter
-
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()Provide a SQL search query.Methods inherited from class de.uplanet.lucy.server.newsagent.AbstractFilter
forConnection, forUser
-
Constructor Details
-
RecipientFilter
public RecipientFilter()
-
-
Method Details
-
sqlQuery
Description copied from interface:IFilterProvide a SQL search query.- Returns:
- A SQL query, or
nullif the filter cannot be applied at database level.
-
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.
-