Package com.day.cq.rewriter.pipeline
Interface Transformer
-
- All Superinterfaces:
ContentHandler
@Deprecated public interface Transformer extends ContentHandler
Deprecated.Use the Apache Sling Rewriter Module (org.apache.sling.rewriter.Transformer)TheTransformerinterface defines the middle of a rewriter pipeline.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidinit(ProcessingContext context, ProcessingComponentConfiguration config)Deprecated.Initialize this component.voidsetContentHandler(ContentHandler handler)Deprecated.Set the content handler the transformer should stream to.-
Methods inherited from interface org.xml.sax.ContentHandler
characters, endDocument, endElement, endPrefixMapping, ignorableWhitespace, processingInstruction, setDocumentLocator, skippedEntity, startDocument, startElement, startPrefixMapping
-
-
-
-
Method Detail
-
init
void init(ProcessingContext context, ProcessingComponentConfiguration config) throws IOException
Deprecated.Initialize this component.- Parameters:
context- The invocation context.config- The configuration for this component.- Throws:
IOException-IOException
-
setContentHandler
void setContentHandler(ContentHandler handler)
Deprecated.Set the content handler the transformer should stream to.- Parameters:
handler- Another transformer or a serializer.
-
-