Package org.nuxeo.ecm.core.convert.api
Class ConverterCheckResult
- java.lang.Object
-
- org.nuxeo.ecm.core.convert.api.ConverterCheckResult
-
- All Implemented Interfaces:
Serializable
public class ConverterCheckResult extends Object implements Serializable
Result object for an availability check on a Converter.Contains an availability flag + error and installation message is needed.
- Author:
- tiry
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected boolean
available
protected String
errorMessage
protected String
installationMessage
protected List<String>
supportedInputMimeTypes
-
Constructor Summary
Constructors Constructor Description ConverterCheckResult()
ConverterCheckResult(String installationMessage, String errorMessage)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getErrorMessage()
String
getInstallationMessage()
List<String>
getSupportedInputMimeTypes()
boolean
isAvailable()
void
setAvailable(boolean available)
void
setSupportedInputMimeTypes(List<String> supportedInputMimeTypes)
-