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

org.xmlnetwork.PrefixLimit Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-b01-fcs 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2008.06.03 at 04:27:27 PM CEST 
//


package org.xmlnetwork;

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


/**
 * 

Java class for prefixLimit complex type. * *

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

 * <complexType name="prefixLimit">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="threshold" type="{http://www.xmlnetwork.org}percentage" minOccurs="0"/>
 *         <element name="teardown">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *       <attribute name="maximum" type="{http://www.w3.org/2001/XMLSchema}integer" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "prefixLimit", propOrder = { "threshold", "teardown" }) public class PrefixLimit { @XmlElement(defaultValue = "75") protected Integer threshold; @XmlElement(required = true) protected PrefixLimit.Teardown teardown; @XmlAttribute protected BigInteger maximum; /** * Gets the value of the threshold property. * * @return * possible object is * {@link Integer } * */ public Integer getThreshold() { return threshold; } /** * Sets the value of the threshold property. * * @param value * allowed object is * {@link Integer } * */ public void setThreshold(Integer value) { this.threshold = value; } /** * Gets the value of the teardown property. * * @return * possible object is * {@link PrefixLimit.Teardown } * */ public PrefixLimit.Teardown getTeardown() { return teardown; } /** * Sets the value of the teardown property. * * @param value * allowed object is * {@link PrefixLimit.Teardown } * */ public void setTeardown(PrefixLimit.Teardown value) { this.teardown = value; } /** * Gets the value of the maximum property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getMaximum() { return maximum; } /** * Sets the value of the maximum property. * * @param value * allowed object is * {@link BigInteger } * */ public void setMaximum(BigInteger value) { this.maximum = value; } /** *

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">
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class Teardown { } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy