Package net.anotheria.asg.util.filter
Interface DocumentFilter
-
- All Known Implementing Classes:
AZDocumentFilter,MissingAnyTranslationFilter,MissingTranslationFilter
public interface DocumentFilterA filter which reduces the documents showed in the cms.- Version:
- $Id: $Id
- Author:
- another
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<FilterTrigger>getTriggerer(java.lang.String storedFilterParameter)getTriggerer.booleanmayPass(DataObject document, java.lang.String attributeName, java.lang.String filterParameter)Returns true if the document may pass the filtering defined by applying the filter parameter to the attribute with filters internal rule.
-
-
-
Method Detail
-
mayPass
boolean mayPass(DataObject document, java.lang.String attributeName, java.lang.String filterParameter)
Returns true if the document may pass the filtering defined by applying the filter parameter to the attribute with filters internal rule.- Parameters:
document- aDataObjectobject.attributeName- aStringobject.filterParameter- aStringobject.- Returns:
- a boolean.
-
getTriggerer
java.util.List<FilterTrigger> getTriggerer(java.lang.String storedFilterParameter)
getTriggerer.
- Parameters:
storedFilterParameter- aStringobject.- Returns:
- the list of triggerers
-
-