Package com.day.cq.replication
Interface ReplicationContentFilterFactory
-
public interface ReplicationContentFilterFactoryAReplicationContentFilterFactorycreates a newReplicationContentFilters based on a givenReplicationAction. EachContentBuildergets the filter chain as aReplicationContentFilterChainset as a parameter with the nameContentBuilder.PARAMETER_CONTENT_FILER_CHAIN. TheContentBuilderinvolved in creating the replication content is using the chain in order to filter content prior to inclusion into the replication content.Implementations of this interface must register themselves as an OSGi service in order to be picked up for building the filter list.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ReplicationContentFiltercreateFilter(ReplicationAction action)Creates a newReplicationContentFilterspecific to the givenReplicationAction.
-
-
-
Method Detail
-
createFilter
ReplicationContentFilter createFilter(ReplicationAction action)
Creates a newReplicationContentFilterspecific to the givenReplicationAction.- Parameters:
action- TheReplicationActionto consider.- Returns:
- A
ReplicationContentFilterornullif no filter is provided for the givenReplicationAction.
-
-