Class CipherInformation
- java.lang.Object
-
- org.apache.synapse.securevault.definition.CipherInformation
-
public class CipherInformation extends Object
Encapsulates the cipher related information
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_ALGORITHMDefault cipher algorithm
-
Constructor Summary
Constructors Constructor Description CipherInformation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAlgorithm()CipherOperationModegetCipherOperationMode()EncodingTypegetInType()StringgetMode()EncodingTypegetOutType()StringgetProvider()StringgetType()voidsetAlgorithm(String algorithm)voidsetCipherOperationMode(CipherOperationMode operationMode)voidsetInType(EncodingType inType)voidsetMode(String mode)voidsetOutType(EncodingType outType)voidsetProvider(String provider)voidsetType(String type)
-
-
-
Field Detail
-
DEFAULT_ALGORITHM
public static final String DEFAULT_ALGORITHM
Default cipher algorithm- See Also:
- Constant Field Values
-
-
Method Detail
-
getAlgorithm
public String getAlgorithm()
-
setAlgorithm
public void setAlgorithm(String algorithm)
-
getCipherOperationMode
public CipherOperationMode getCipherOperationMode()
-
setCipherOperationMode
public void setCipherOperationMode(CipherOperationMode operationMode)
-
getMode
public String getMode()
-
setMode
public void setMode(String mode)
-
getType
public String getType()
-
setType
public void setType(String type)
-
getInType
public EncodingType getInType()
-
setInType
public void setInType(EncodingType inType)
-
getOutType
public EncodingType getOutType()
-
setOutType
public void setOutType(EncodingType outType)
-
getProvider
public String getProvider()
-
setProvider
public void setProvider(String provider)
-
-