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

de.drv.dsrv.extrastandard.namespace.messages.Control 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.messages;

import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for ControlType complex type. * *

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

 * <complexType name="ControlType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="MaximumPackages" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" minOccurs="0"/>
 *         <element name="MaximumMessages" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" minOccurs="0"/>
 *         <element name="MaximumResults" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" minOccurs="0"/>
 *         <element name="MaximumSize" type="{http://www.extra-standard.de/namespace/message/1}SpaceSizeType" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ControlType", propOrder = { "maximumPackages", "maximumMessages", "maximumResults", "maximumSize" }) public class Control { @XmlElement(name = "MaximumPackages") @XmlSchemaType(name = "positiveInteger") protected BigInteger maximumPackages; @XmlElement(name = "MaximumMessages") @XmlSchemaType(name = "positiveInteger") protected BigInteger maximumMessages; @XmlElement(name = "MaximumResults") @XmlSchemaType(name = "positiveInteger") protected BigInteger maximumResults; @XmlElement(name = "MaximumSize") protected String maximumSize; /** * Gets the value of the maximumPackages property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getMaximumPackages() { return maximumPackages; } /** * Sets the value of the maximumPackages property. * * @param value * allowed object is * {@link BigInteger } * */ public void setMaximumPackages(BigInteger value) { this.maximumPackages = value; } /** * Gets the value of the maximumMessages property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getMaximumMessages() { return maximumMessages; } /** * Sets the value of the maximumMessages property. * * @param value * allowed object is * {@link BigInteger } * */ public void setMaximumMessages(BigInteger value) { this.maximumMessages = value; } /** * Gets the value of the maximumResults property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getMaximumResults() { return maximumResults; } /** * Sets the value of the maximumResults property. * * @param value * allowed object is * {@link BigInteger } * */ public void setMaximumResults(BigInteger value) { this.maximumResults = value; } /** * Gets the value of the maximumSize property. * * @return * possible object is * {@link String } * */ public String getMaximumSize() { return maximumSize; } /** * Sets the value of the maximumSize property. * * @param value * allowed object is * {@link String } * */ public void setMaximumSize(String value) { this.maximumSize = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy