Package com.day.cq.rewriter.pipeline
Interface RewriterTransformerFactory
-
@Deprecated public interface RewriterTransformerFactory
Deprecated.Use the Apache Sling Rewriter Module (org.apache.sling.rewriter.Transformer)TheRewriterTransformerFactory
is an optional component which can be used to enhance the rewriting pipeline. All available rewriting transformers with a service ranking below zero are chained before the default link rewriter. All available transformers with a service ranking higher or equal to zero are chained after the default link rewriter. Therefore the property "service.ranking" should be used for the factory. The factories itself are not chained but the resulting transformers are. On each pipeline call new instances are created.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Transformer
createTransformer()
Deprecated.Create a new transformer for the pipeline.
-
-
-
Method Detail
-
createTransformer
Transformer createTransformer()
Deprecated.Create a new transformer for the pipeline.- Returns:
- A new transformer.
-
-