package org.rasea.agent.demoiselle.internal.proxy;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for applicationRequest complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="applicationRequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="application" type="{http://rasea.org/ps/wsdl/Maintenance_v1}applicationType"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "applicationRequest", propOrder = {
"application"
})
public class ApplicationRequest {
@XmlElement(required = true)
protected ApplicationType application;
/**
* Gets the value of the application property.
*
* @return
* possible object is
* {@link ApplicationType }
*
*/
public ApplicationType getApplication() {
return application;
}
/**
* Sets the value of the application property.
*
* @param value
* allowed object is
* {@link ApplicationType }
*
*/
public void setApplication(ApplicationType value) {
this.application = value;
}
}