public abstract class ConversionProcessor<Settings>
extends java.lang.Object
| Constructor and Description | 
|---|
| ConversionProcessor() | 
| Modifier and Type | Method and Description | 
|---|---|
| abstract boolean | isConversionNeeded(Settings settings) | 
| void | postProcess(Settings settings)Perform the conversion. | 
| void | preProcess(Settings settings)Perform the conversion. | 
| abstract void | process(Settings settings)Perform the conversion | 
public abstract boolean isConversionNeeded(Settings settings)
true if the settings are in old format and need to be convertedpublic void preProcess(Settings settings) throws CannotConvertException
process(Settings) for other converters is invokedCannotConvertExceptionpublic abstract void process(Settings settings) throws CannotConvertException
CannotConvertExceptionpublic void postProcess(Settings settings) throws CannotConvertException
process(Settings) for other converters is invokedCannotConvertException