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

org.xmlnetwork.As Maven / Gradle / Ivy

//
// 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 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 as complex type. * *

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

 * <complexType name="as">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="InternalNetworks" type="{http://www.xmlnetwork.org}intNets" minOccurs="0"/>
 *         <element name="BorderRouters" type="{http://www.xmlnetwork.org}borderRouters" minOccurs="0"/>
 *         <element name="RoutingPolicies" type="{http://www.xmlnetwork.org}routingPols" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="number" type="{http://www.xmlnetwork.org}asNum" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "as", propOrder = { "internalNetworks", "borderRouters", "routingPolicies" }) public class As { @XmlElement(name = "InternalNetworks") protected IntNets internalNetworks; @XmlElement(name = "BorderRouters") protected BorderRouters borderRouters; @XmlElement(name = "RoutingPolicies") protected RoutingPols routingPolicies; @XmlAttribute protected String number; /** * Gets the value of the internalNetworks property. * * @return * possible object is * {@link IntNets } * */ public IntNets getInternalNetworks() { return internalNetworks; } /** * Sets the value of the internalNetworks property. * * @param value * allowed object is * {@link IntNets } * */ public void setInternalNetworks(IntNets value) { this.internalNetworks = value; } /** * Gets the value of the borderRouters property. * * @return * possible object is * {@link BorderRouters } * */ public BorderRouters getBorderRouters() { return borderRouters; } /** * Sets the value of the borderRouters property. * * @param value * allowed object is * {@link BorderRouters } * */ public void setBorderRouters(BorderRouters value) { this.borderRouters = value; } /** * Gets the value of the routingPolicies property. * * @return * possible object is * {@link RoutingPols } * */ public RoutingPols getRoutingPolicies() { return routingPolicies; } /** * Sets the value of the routingPolicies property. * * @param value * allowed object is * {@link RoutingPols } * */ public void setRoutingPolicies(RoutingPols value) { this.routingPolicies = value; } /** * Gets the value of the number property. * * @return * possible object is * {@link String } * */ public String getNumber() { return number; } /** * Sets the value of the number property. * * @param value * allowed object is * {@link String } * */ public void setNumber(String value) { this.number = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy