Package com.logicaldoc.core.conversion
Class NotAvailableConverter
java.lang.Object
com.logicaldoc.core.conversion.NotAvailableConverter
- All Implemented Interfaces:
- FormatConverter
- Direct Known Subclasses:
- NoConversionConverter
A converter that always convert into a static PDF that says 'not available'
- Since:
- 7.6.4
- Author:
- Marco Meschieri - LogicalDOC
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidPerforms the conversionvoidPerforms the conversiongetParameter(String name) Gets the value of a parameterImplementations should return the list of the required parameters.Returns the map of parametersbooleanChecks if the converter is enabled or notvoidReads it's own parameters and stores them in the parameters mapvoidsetEnabled(boolean enabled) Enables or disables the converter
- 
Constructor Details- 
NotAvailableConverterpublic NotAvailableConverter()
 
- 
- 
Method Details- 
convertDescription copied from interface:FormatConverterPerforms the conversion- Specified by:
- convertin interface- FormatConverter
- Parameters:
- src- The source file
- dest- The converted file, the extension of it's filename defines the output format
- Throws:
- IOException- raised if the conversion resulted in an error
 
- 
convertDescription copied from interface:FormatConverterPerforms the conversion- Specified by:
- convertin interface- FormatConverter
- Parameters:
- sid- The actual Session ID (optional)
- document- The document (optional)
- src- The source file
- dest- The converted file, the extension of it's filename defines the output format
- Throws:
- IOException- raised if the conversion resulted in an error
 
- 
getParameterNamesDescription copied from interface:FormatConverterImplementations should return the list of the required parameters. A parameter is stored in the context as converter.SimpleClassName.parameter = value- Specified by:
- getParameterNamesin interface- FormatConverter
- Returns:
- list of the configuration parameters
 
- 
getParametersDescription copied from interface:FormatConverterReturns the map of parameters- Specified by:
- getParametersin interface- FormatConverter
- Returns:
- map param_name = param_value
 
- 
getParameterDescription copied from interface:FormatConverterGets the value of a parameter- Specified by:
- getParameterin interface- FormatConverter
- Parameters:
- name- name of the configuration parameter
- Returns:
- the value of the configuration parameter
 
- 
loadParameterspublic void loadParameters()Description copied from interface:FormatConverterReads it's own parameters and stores them in the parameters map- Specified by:
- loadParametersin interface- FormatConverter
 
- 
isEnabledpublic boolean isEnabled()Description copied from interface:FormatConverterChecks if the converter is enabled or not- Specified by:
- isEnabledin interface- FormatConverter
- Returns:
- if the converter is enabled
 
- 
setEnabledpublic void setEnabled(boolean enabled) Description copied from interface:FormatConverterEnables or disables the converter- Specified by:
- setEnabledin interface- FormatConverter
- Parameters:
- enabled- the enabled flag
 
 
-