Class AsymmetricKey
- java.lang.Object
-
- org.certificateservices.messages.sensitivekeys.jaxb.AsymmetricKey
-
public class AsymmetricKey extends java.lang.ObjectJava class for AsymmetricKey complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="AsymmetricKey"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="publicKey" type="{http://certificateservices.org/xsd/sensitivekeys}EncodedKey"/> <element name="privateKey" type="{http://certificateservices.org/xsd/sensitivekeys}EncodedKey"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected EncodedKeyprivateKeyprotected EncodedKeypublicKey
-
Constructor Summary
Constructors Constructor Description AsymmetricKey()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EncodedKeygetPrivateKey()Gets the value of the privateKey property.EncodedKeygetPublicKey()Gets the value of the publicKey property.voidsetPrivateKey(EncodedKey value)Sets the value of the privateKey property.voidsetPublicKey(EncodedKey value)Sets the value of the publicKey property.
-
-
-
Field Detail
-
publicKey
protected EncodedKey publicKey
-
privateKey
protected EncodedKey privateKey
-
-
Method Detail
-
getPublicKey
public EncodedKey getPublicKey()
Gets the value of the publicKey property.- Returns:
- possible object is
EncodedKey
-
setPublicKey
public void setPublicKey(EncodedKey value)
Sets the value of the publicKey property.- Parameters:
value- allowed object isEncodedKey
-
getPrivateKey
public EncodedKey getPrivateKey()
Gets the value of the privateKey property.- Returns:
- possible object is
EncodedKey
-
setPrivateKey
public void setPrivateKey(EncodedKey value)
Sets the value of the privateKey property.- Parameters:
value- allowed object isEncodedKey
-
-