Class KeyDataType
- java.lang.Object
-
- org.certificateservices.messages.sensitivekeys.jaxb.KeyDataType
-
- Direct Known Subclasses:
KeyData
public class KeyDataType extends java.lang.ObjectJava class for KeyDataType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="KeyDataType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <choice> <element name="symmetricKey" type="{http://certificateservices.org/xsd/sensitivekeys}EncodedKey"/> <element name="asymmetricKey" type="{http://certificateservices.org/xsd/sensitivekeys}AsymmetricKey"/> </choice> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected AsymmetricKeyasymmetricKeyprotected EncodedKeysymmetricKey
-
Constructor Summary
Constructors Constructor Description KeyDataType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AsymmetricKeygetAsymmetricKey()Gets the value of the asymmetricKey property.EncodedKeygetSymmetricKey()Gets the value of the symmetricKey property.voidsetAsymmetricKey(AsymmetricKey value)Sets the value of the asymmetricKey property.voidsetSymmetricKey(EncodedKey value)Sets the value of the symmetricKey property.
-
-
-
Field Detail
-
symmetricKey
protected EncodedKey symmetricKey
-
asymmetricKey
protected AsymmetricKey asymmetricKey
-
-
Method Detail
-
getSymmetricKey
public EncodedKey getSymmetricKey()
Gets the value of the symmetricKey property.- Returns:
- possible object is
EncodedKey
-
setSymmetricKey
public void setSymmetricKey(EncodedKey value)
Sets the value of the symmetricKey property.- Parameters:
value- allowed object isEncodedKey
-
getAsymmetricKey
public AsymmetricKey getAsymmetricKey()
Gets the value of the asymmetricKey property.- Returns:
- possible object is
AsymmetricKey
-
setAsymmetricKey
public void setAsymmetricKey(AsymmetricKey value)
Sets the value of the asymmetricKey property.- Parameters:
value- allowed object isAsymmetricKey
-
-