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

org.certificateservices.messages.csmessages.jaxb.CSResponse Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2015.05.21 at 02:30:00 PM CEST 
//


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

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

 * <complexType name="CSResponse">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="inResponseTo" type="{http://certificateservices.org/xsd/csmessages2_0}uuid"/>
 *         <element name="status" type="{http://certificateservices.org/xsd/csmessages2_0}RequestStatus"/>
 *         <element name="failureMessage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CSResponse", namespace = "http://certificateservices.org/xsd/csmessages2_0", propOrder = { "inResponseTo", "status", "failureMessage" }) public class CSResponse { @XmlElement(required = true) protected String inResponseTo; @XmlElement(required = true) protected RequestStatus status; protected String failureMessage; /** * Gets the value of the inResponseTo property. * * @return * possible object is * {@link String } * */ public String getInResponseTo() { return inResponseTo; } /** * Sets the value of the inResponseTo property. * * @param value * allowed object is * {@link String } * */ public void setInResponseTo(String value) { this.inResponseTo = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link RequestStatus } * */ public RequestStatus getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link RequestStatus } * */ public void setStatus(RequestStatus value) { this.status = value; } /** * Gets the value of the failureMessage property. * * @return * possible object is * {@link String } * */ public String getFailureMessage() { return failureMessage; } /** * Sets the value of the failureMessage property. * * @param value * allowed object is * {@link String } * */ public void setFailureMessage(String value) { this.failureMessage = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy