Interface EncrypterResponse
-
public interface EncrypterResponseEncryptorResponse Password Utility Plugin result
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetError()Error message.java.util.Map<java.lang.String,java.lang.String>getOutputs()Detail of encrypt process.booleanisValid()Define the status of the encrypt process.
-
-
-
Method Detail
-
isValid
boolean isValid()
Define the status of the encrypt process.- Returns:
- true/false
-
getError
java.lang.String getError()
Error message.- Returns:
- Description of the error message
-
getOutputs
java.util.Map<java.lang.String,java.lang.String> getOutputs()
Detail of encrypt process.- Returns:
- Result of the encrypt process to be displayed on the GUI. eg: {"enc":"xxxyyxff"}
-
-