Class EncodedKey
- java.lang.Object
-
- org.certificateservices.messages.sensitivekeys.jaxb.EncodedKey
-
public class EncodedKey extends java.lang.ObjectJava class for EncodedKey complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="EncodedKey"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="algorithm" type="{http://certificateservices.org/xsd/sensitivekeys}notemptystring"/> <element name="data" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/> <element name="format" type="{http://certificateservices.org/xsd/sensitivekeys}notemptystring"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description EncodedKey()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetAlgorithm()Gets the value of the algorithm property.byte[]getData()Gets the value of the data property.java.lang.StringgetFormat()Gets the value of the format property.voidsetAlgorithm(java.lang.String value)Sets the value of the algorithm property.voidsetData(byte[] value)Sets the value of the data property.voidsetFormat(java.lang.String value)Sets the value of the format property.
-
-
-
Method Detail
-
getAlgorithm
public java.lang.String getAlgorithm()
Gets the value of the algorithm property.- Returns:
- possible object is
String
-
setAlgorithm
public void setAlgorithm(java.lang.String value)
Sets the value of the algorithm property.- Parameters:
value- allowed object isString
-
getData
public byte[] getData()
Gets the value of the data property.- Returns:
- possible object is byte[]
-
setData
public void setData(byte[] value)
Sets the value of the data property.- Parameters:
value- allowed object is byte[]
-
getFormat
public java.lang.String getFormat()
Gets the value of the format property.- Returns:
- possible object is
String
-
setFormat
public void setFormat(java.lang.String value)
Sets the value of the format property.- Parameters:
value- allowed object isString
-
-