com.cloudseal.rest.jaxb.Status Maven / Gradle / Ivy
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.6
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2012.10.07 at 03:16:01 PM BST
//
package com.cloudseal.rest.jaxb;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="success" type="{http://www.cloudseal.com/schema/rest}statusType"/>
* <element name="failure" type="{http://www.cloudseal.com/schema/rest}statusType"/>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"failure",
"success"
})
@XmlRootElement(name = "status")
public class Status implements Serializable
{
private final static long serialVersionUID = 1L;
protected StatusType failure;
protected StatusType success;
/**
* Gets the value of the failure property.
*
* @return
* possible object is
* {@link StatusType }
*
*/
public StatusType getFailure() {
return failure;
}
/**
* Sets the value of the failure property.
*
* @param value
* allowed object is
* {@link StatusType }
*
*/
public void setFailure(StatusType value) {
this.failure = value;
}
/**
* Gets the value of the success property.
*
* @return
* possible object is
* {@link StatusType }
*
*/
public StatusType getSuccess() {
return success;
}
/**
* Sets the value of the success property.
*
* @param value
* allowed object is
* {@link StatusType }
*
*/
public void setSuccess(StatusType value) {
this.success = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy