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

org.certificateservices.messages.signrequest.jaxb.SignResponseTask 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: 2019.10.03 at 11:28:50 AM CEST 
//


package org.certificateservices.messages.signrequest.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 SignResponseTask complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="SignResponseTask">
 *   <complexContent>
 *     <extension base="{http://certificateservices.org/xsd/signrequest2_0}BaseSignTask">
 *       <sequence>
 *         <element name="signResponseData" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
 *         <element name="certificateChain" type="{http://certificateservices.org/xsd/signrequest2_0}certificateChainType" minOccurs="0"/>
 *         <element name="publicKey" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SignResponseTask", propOrder = { "signResponseData", "certificateChain", "publicKey" }) public class SignResponseTask extends BaseSignTask { @XmlElement(required = true) protected byte[] signResponseData; protected CertificateChainType certificateChain; @XmlElement(required = true) protected byte[] publicKey; /** * Gets the value of the signResponseData property. * * @return * possible object is * byte[] */ public byte[] getSignResponseData() { return signResponseData; } /** * Sets the value of the signResponseData property. * * @param value * allowed object is * byte[] */ public void setSignResponseData(byte[] value) { this.signResponseData = value; } /** * Gets the value of the certificateChain property. * * @return * possible object is * {@link CertificateChainType } * */ public CertificateChainType getCertificateChain() { return certificateChain; } /** * Sets the value of the certificateChain property. * * @param value * allowed object is * {@link CertificateChainType } * */ public void setCertificateChain(CertificateChainType value) { this.certificateChain = value; } /** * Gets the value of the publicKey property. * * @return * possible object is * byte[] */ public byte[] getPublicKey() { return publicKey; } /** * Sets the value of the publicKey property. * * @param value * allowed object is * byte[] */ public void setPublicKey(byte[] value) { this.publicKey = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy