org.xmlnetwork.Neighbour Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of model Show documentation
Show all versions of model Show documentation
Support an hardware description language to automatically
configure bindings.
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.05.20 at 11:59:14 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.XmlType;
/**
* Java class for neighbour complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="neighbour">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="metric_offset" type="{http://www.xmlnetwork.org}ripMetric" minOccurs="0"/>
* <element name="send_version" type="{http://www.xmlnetwork.org}version" minOccurs="0"/>
* <element name="receive_version" type="{http://www.xmlnetwork.org}version" minOccurs="0"/>
* <choice>
* <element name="address" type="{http://www.xmlnetwork.org}ipPrefix"/>
* <element name="interface" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </choice>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "neighbour", propOrder = {
"metricOffset",
"sendVersion",
"receiveVersion",
"address",
"_interface"
})
public class Neighbour {
@XmlElement(name = "metric_offset")
protected Integer metricOffset;
@XmlElement(name = "send_version")
protected String sendVersion;
@XmlElement(name = "receive_version")
protected String receiveVersion;
protected String address;
@XmlElement(name = "interface")
protected String _interface;
/**
* Gets the value of the metricOffset property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getMetricOffset() {
return metricOffset;
}
/**
* Sets the value of the metricOffset property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setMetricOffset(Integer value) {
this.metricOffset = value;
}
/**
* Gets the value of the sendVersion property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSendVersion() {
return sendVersion;
}
/**
* Sets the value of the sendVersion property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSendVersion(String value) {
this.sendVersion = value;
}
/**
* Gets the value of the receiveVersion property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getReceiveVersion() {
return receiveVersion;
}
/**
* Sets the value of the receiveVersion property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setReceiveVersion(String value) {
this.receiveVersion = value;
}
/**
* 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;
}
/**
* Gets the value of the interface property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getInterface() {
return _interface;
}
/**
* Sets the value of the interface property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setInterface(String value) {
this._interface = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy