Interface RTFConversionHandler
-
public interface RTFConversionHandler
Provides the API for rtf conversion handler implementations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stream
convert(NodeWorker worker, StreamBundle inputBundle)
Perform the rtf conversion.String
getConverterName()
-
-
-
Method Detail
-
getConverterName
String getConverterName()
- Returns:
- specific converter name.
-
convert
Stream convert(NodeWorker worker, StreamBundle inputBundle) throws Throwable
Perform the rtf conversion.- Parameters:
worker
- the worker that commissioned the rtf conversion task.inputBundle
- the rtf stream input bundle.- Returns:
- the converted rtf stream as PDF.
- Throws:
Throwable
- in case of failure.
-
-