Package org.apache.sling.rewriter
Interface Serializer
-
- All Superinterfaces:
org.xml.sax.ContentHandler
public interface Serializer extends org.xml.sax.ContentHandler
TheSerializer
marks the end of the pipeline.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
dispose()
Dispose the serializer.void
init(ProcessingContext context, ProcessingComponentConfiguration config)
Initialize this component.
-
-
-
Method Detail
-
init
void init(ProcessingContext context, ProcessingComponentConfiguration config) throws java.io.IOException
Initialize this component.- Parameters:
context
- The invocation context.config
- The configuration for this component.- Throws:
java.io.IOException
-
dispose
void dispose()
Dispose the serializer. This method is always invoked by the rewriter in order to allow the serializer to release any resources etc. After this method has been called the instance is considered unusable.
-
-