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

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

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

 * <complexType name="SignRequestTask">
 *   <complexContent>
 *     <extension base="{http://certificateservices.org/xsd/signrequest2_0}BaseSignTask">
 *       <sequence>
 *         <element name="signRequestData" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SignRequestTask", propOrder = { "signRequestData" }) public class SignRequestTask extends BaseSignTask { @XmlElement(required = true) protected byte[] signRequestData; /** * Gets the value of the signRequestData property. * * @return * possible object is * byte[] */ public byte[] getSignRequestData() { return signRequestData; } /** * Sets the value of the signRequestData property. * * @param value * allowed object is * byte[] */ public void setSignRequestData(byte[] value) { this.signRequestData = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy