org.iru.rts.tvqr.VoucherRegistration Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.05.31 at 01:52:56 PM CEST
//
package org.iru.rts.tvqr;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
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">
* <sequence>
* <element name="Envelope" type="{http://rts.iru.org/tvqr}EnvelopeType"/>
* <element name="Body" type="{http://rts.iru.org/tvqr}VoucherRegistrationBodyType"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"envelope",
"body"
})
@XmlRootElement(name = "VoucherRegistration")
public class VoucherRegistration
implements Serializable
{
private final static long serialVersionUID = 231957628158063549L;
@XmlElement(name = "Envelope", required = true)
protected EnvelopeType envelope;
@XmlElement(name = "Body", required = true)
protected VoucherRegistrationBodyType body;
/**
* Gets the value of the envelope property.
*
* @return
* possible object is
* {@link EnvelopeType }
*
*/
public EnvelopeType getEnvelope() {
return envelope;
}
/**
* Sets the value of the envelope property.
*
* @param value
* allowed object is
* {@link EnvelopeType }
*
*/
public void setEnvelope(EnvelopeType value) {
this.envelope = value;
}
/**
* Gets the value of the body property.
*
* @return
* possible object is
* {@link VoucherRegistrationBodyType }
*
*/
public VoucherRegistrationBodyType getBody() {
return body;
}
/**
* Sets the value of the body property.
*
* @param value
* allowed object is
* {@link VoucherRegistrationBodyType }
*
*/
public void setBody(VoucherRegistrationBodyType value) {
this.body = value;
}
}