Package org.apache.abdera.util.filter
Class CompoundParseFilter
- java.lang.Object
-
- org.apache.abdera.util.filter.AbstractParseFilter
-
- org.apache.abdera.util.filter.CompoundParseFilter
-
- All Implemented Interfaces:
Serializable,Cloneable,org.apache.abdera.filter.ParseFilter
@Deprecated public class CompoundParseFilter extends AbstractParseFilter implements org.apache.abdera.filter.ParseFilter
Deprecated.Legacy AEM 6.x API.A simple compound parse filter that allows us to apply multiple parse filters to a single parse operation.
CompoundParseFilter filter = new CompoundParseFilter(CompoundParseFilter.Condition.ACCEPTABLE_TO_ALL, new SafeContentWhiteListParseFilter(), new MyWhiteListParseFilter(), new MySomeOtherKindOfParseFilter()); options.setParseFilter(filter);- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCompoundParseFilter.ConditionDeprecated.
-
Constructor Summary
Constructors Constructor Description CompoundParseFilter(org.apache.abdera.filter.ParseFilter... filters)Deprecated.CompoundParseFilter(CompoundParseFilter.Condition condition, org.apache.abdera.filter.ParseFilter... filters)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanacceptable(QName qname)Deprecated.booleanacceptable(QName qname, QName attribute)Deprecated.Objectclone()Deprecated.-
Methods inherited from class org.apache.abdera.util.filter.AbstractParseFilter
getIgnoreComments, getIgnoreProcessingInstructions, getIgnoreWhitespace, setIgnoreComments, setIgnoreProcessingInstructions, setIgnoreWhitespace
-
-
-
-
Constructor Detail
-
CompoundParseFilter
public CompoundParseFilter(CompoundParseFilter.Condition condition, org.apache.abdera.filter.ParseFilter... filters)
Deprecated.
-
CompoundParseFilter
public CompoundParseFilter(org.apache.abdera.filter.ParseFilter... filters)
Deprecated.
-
-
Method Detail
-
acceptable
public boolean acceptable(QName qname)
Deprecated.- Specified by:
acceptablein interfaceorg.apache.abdera.filter.ParseFilter
-
acceptable
public boolean acceptable(QName qname, QName attribute)
Deprecated.- Specified by:
acceptablein interfaceorg.apache.abdera.filter.ParseFilter
-
clone
public Object clone() throws CloneNotSupportedException
Deprecated.- Specified by:
clonein interfaceorg.apache.abdera.filter.ParseFilter- Overrides:
clonein classAbstractParseFilter- Throws:
CloneNotSupportedException
-
-