org.xmlnetwork.RteReflect Maven / Gradle / Ivy
Show all versions of fractal-bf-hdl-model Show documentation
//
// 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.util.ArrayList;
import java.util.List;
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 rteReflect complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="rteReflect">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Cluster" maxOccurs="unbounded">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Client" maxOccurs="unbounded">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="address" type="{http://www.xmlnetwork.org}ipPrefix" />
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* <attribute name="fullyMeshed" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* <attribute name="id" type="{http://www.xmlnetwork.org}ipPrefix" />
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "rteReflect", propOrder = {
"cluster"
})
public class RteReflect {
@XmlElement(name = "Cluster", required = true)
protected List cluster;
/**
* Gets the value of the cluster property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the cluster property.
*
*
* For example, to add a new item, do as follows:
*
* getCluster().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link RteReflect.Cluster }
*
*
*/
public List getCluster() {
if (cluster == null) {
cluster = new ArrayList();
}
return this.cluster;
}
/**
* 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="Client" maxOccurs="unbounded">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="address" type="{http://www.xmlnetwork.org}ipPrefix" />
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* <attribute name="fullyMeshed" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* <attribute name="id" type="{http://www.xmlnetwork.org}ipPrefix" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"client"
})
public static class Cluster {
@XmlElement(name = "Client", required = true)
protected List client;
@XmlAttribute
protected Boolean fullyMeshed;
@XmlAttribute
protected String id;
/**
* Gets the value of the client property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the client property.
*
*
* For example, to add a new item, do as follows:
*
* getClient().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link RteReflect.Cluster.Client }
*
*
*/
public List getClient() {
if (client == null) {
client = new ArrayList();
}
return this.client;
}
/**
* Gets the value of the fullyMeshed property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isFullyMeshed() {
return fullyMeshed;
}
/**
* Sets the value of the fullyMeshed property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setFullyMeshed(Boolean value) {
this.fullyMeshed = value;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = 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">
* <attribute name="address" type="{http://www.xmlnetwork.org}ipPrefix" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
public static class Client {
@XmlAttribute
protected String address;
/**
* Gets the value of the address property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAddress() {
return address;
}
/**
* Sets the value of the address property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAddress(String value) {
this.address = value;
}
}
}
}