All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.certificateservices.messages.sensitivekeys.jaxb.AsymmetricKey Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.03.01 at 08:01:08 PM CET 
//


package org.certificateservices.messages.sensitivekeys.jaxb;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java 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>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AsymmetricKey", propOrder = { "publicKey", "privateKey" }) public class AsymmetricKey { @XmlElement(required = true) protected EncodedKey publicKey; @XmlElement(required = true) protected EncodedKey privateKey; /** * Gets the value of the publicKey property. * * @return * possible object is * {@link EncodedKey } * */ public EncodedKey getPublicKey() { return publicKey; } /** * Sets the value of the publicKey property. * * @param value * allowed object is * {@link EncodedKey } * */ public void setPublicKey(EncodedKey value) { this.publicKey = value; } /** * Gets the value of the privateKey property. * * @return * possible object is * {@link EncodedKey } * */ public EncodedKey getPrivateKey() { return privateKey; } /** * Sets the value of the privateKey property. * * @param value * allowed object is * {@link EncodedKey } * */ public void setPrivateKey(EncodedKey value) { this.privateKey = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy