de.drv.dsrv.extrastandard.namespace.response.Package Maven / Gradle / Ivy
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-b10
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2013.02.27 at 11:29:43 PM CET
//
package de.drv.dsrv.extrastandard.namespace.response;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import de.drv.dsrv.extrastandard.namespace.components.AnyPlugInContainerType;
import de.drv.dsrv.extrastandard.namespace.components.ElementWithOptionalVersionType;
import de.drv.dsrv.extrastandard.namespace.components.SignaturesType;
import de.drv.dsrv.extrastandard.namespace.logging.LoggingType;
/**
* Java class for PackageResponseType complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PackageResponseType">
* <complexContent>
* <extension base="{http://www.extra-standard.de/namespace/components/1}ElementWithOptionalVersionType">
* <sequence>
* <element ref="{http://www.extra-standard.de/namespace/response/1}PackageHeader"/>
* <element ref="{http://www.extra-standard.de/namespace/response/1}PackagePlugIns" minOccurs="0"/>
* <element ref="{http://www.extra-standard.de/namespace/response/1}PackageBody"/>
* <element ref="{http://www.extra-standard.de/namespace/logging/1}Logging" minOccurs="0"/>
* <element ref="{http://www.extra-standard.de/namespace/components/1}Signatures" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PackageResponseType", propOrder = {
"packageHeader",
"packagePlugIns",
"packageBody",
"logging",
"signatures"
})
public class Package
extends ElementWithOptionalVersionType
{
@XmlElement(name = "PackageHeader", required = true)
protected PackageHeader packageHeader;
@XmlElement(name = "PackagePlugIns")
protected AnyPlugInContainerType packagePlugIns;
@XmlElement(name = "PackageBody", required = true)
protected PackageBody packageBody;
@XmlElement(name = "Logging", namespace = "http://www.extra-standard.de/namespace/logging/1")
protected LoggingType logging;
@XmlElement(name = "Signatures", namespace = "http://www.extra-standard.de/namespace/components/1")
protected SignaturesType signatures;
/**
* Gets the value of the packageHeader property.
*
* @return
* possible object is
* {@link PackageHeader }
*
*/
public PackageHeader getPackageHeader() {
return packageHeader;
}
/**
* Sets the value of the packageHeader property.
*
* @param value
* allowed object is
* {@link PackageHeader }
*
*/
public void setPackageHeader(PackageHeader value) {
this.packageHeader = value;
}
/**
* Gets the value of the packagePlugIns property.
*
* @return
* possible object is
* {@link AnyPlugInContainerType }
*
*/
public AnyPlugInContainerType getPackagePlugIns() {
return packagePlugIns;
}
/**
* Sets the value of the packagePlugIns property.
*
* @param value
* allowed object is
* {@link AnyPlugInContainerType }
*
*/
public void setPackagePlugIns(AnyPlugInContainerType value) {
this.packagePlugIns = value;
}
/**
* Gets the value of the packageBody property.
*
* @return
* possible object is
* {@link PackageBody }
*
*/
public PackageBody getPackageBody() {
return packageBody;
}
/**
* Sets the value of the packageBody property.
*
* @param value
* allowed object is
* {@link PackageBody }
*
*/
public void setPackageBody(PackageBody value) {
this.packageBody = value;
}
/**
* Gets the value of the logging property.
*
* @return
* possible object is
* {@link LoggingType }
*
*/
public LoggingType getLogging() {
return logging;
}
/**
* Sets the value of the logging property.
*
* @param value
* allowed object is
* {@link LoggingType }
*
*/
public void setLogging(LoggingType value) {
this.logging = value;
}
/**
* Gets the value of the signatures property.
*
* @return
* possible object is
* {@link SignaturesType }
*
*/
public SignaturesType getSignatures() {
return signatures;
}
/**
* Sets the value of the signatures property.
*
* @param value
* allowed object is
* {@link SignaturesType }
*
*/
public void setSignatures(SignaturesType value) {
this.signatures = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy