org.xmlnetwork.NetML 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.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* 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">
* <sequence>
* <element name="AS-List" type="{http://www.xmlnetwork.org}asList" minOccurs="0"/>
* <element name="ebgpPeerings" type="{http://www.xmlnetwork.org}peerings" minOccurs="0"/>
* <element name="Networks" type="{http://www.xmlnetwork.org}networks" minOccurs="0"/>
* <element name="Routers" type="{http://www.xmlnetwork.org}routers" minOccurs="0"/>
* <element name="Firewalls" type="{http://www.xmlnetwork.org}firewalls" minOccurs="0"/>
* <element name="latencies" type="{http://www.xmlnetwork.org}latencies" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"asList",
"ebgpPeerings",
"networks",
"routers",
"firewalls",
"latencies"
})
@XmlRootElement(name = "NetML")
public class NetML {
@XmlElement(name = "AS-List")
protected AsList asList;
protected Peerings ebgpPeerings;
@XmlElement(name = "Networks")
protected Networks networks;
@XmlElement(name = "Routers")
protected Routers routers;
@XmlElement(name = "Firewalls")
protected Firewalls firewalls;
protected Latencies latencies;
/**
* Gets the value of the asList property.
*
* @return
* possible object is
* {@link AsList }
*
*/
public AsList getASList() {
return asList;
}
/**
* Sets the value of the asList property.
*
* @param value
* allowed object is
* {@link AsList }
*
*/
public void setASList(AsList value) {
this.asList = value;
}
/**
* Gets the value of the ebgpPeerings property.
*
* @return
* possible object is
* {@link Peerings }
*
*/
public Peerings getEbgpPeerings() {
return ebgpPeerings;
}
/**
* Sets the value of the ebgpPeerings property.
*
* @param value
* allowed object is
* {@link Peerings }
*
*/
public void setEbgpPeerings(Peerings value) {
this.ebgpPeerings = value;
}
/**
* Gets the value of the networks property.
*
* @return
* possible object is
* {@link Networks }
*
*/
public Networks getNetworks() {
return networks;
}
/**
* Sets the value of the networks property.
*
* @param value
* allowed object is
* {@link Networks }
*
*/
public void setNetworks(Networks value) {
this.networks = value;
}
/**
* Gets the value of the routers property.
*
* @return
* possible object is
* {@link Routers }
*
*/
public Routers getRouters() {
return routers;
}
/**
* Sets the value of the routers property.
*
* @param value
* allowed object is
* {@link Routers }
*
*/
public void setRouters(Routers value) {
this.routers = value;
}
/**
* Gets the value of the firewalls property.
*
* @return
* possible object is
* {@link Firewalls }
*
*/
public Firewalls getFirewalls() {
return firewalls;
}
/**
* Sets the value of the firewalls property.
*
* @param value
* allowed object is
* {@link Firewalls }
*
*/
public void setFirewalls(Firewalls value) {
this.firewalls = value;
}
/**
* Gets the value of the latencies property.
*
* @return
* possible object is
* {@link Latencies }
*
*/
public Latencies getLatencies() {
return latencies;
}
/**
* Sets the value of the latencies property.
*
* @param value
* allowed object is
* {@link Latencies }
*
*/
public void setLatencies(Latencies value) {
this.latencies = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy