com.redhat.rhevm.api.model.HostNIC Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2010.09.27 at 07:29:49 PM IST
//
package com.redhat.rhevm.api.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for HostNIC complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostNIC">
* <complexContent>
* <extension base="{}BaseResource">
* <sequence>
* <element ref="{}host" minOccurs="0"/>
* <element ref="{}network" minOccurs="0"/>
* <element ref="{}mac" minOccurs="0"/>
* <element ref="{}ip" minOccurs="0"/>
* <element ref="{}vlan" minOccurs="0"/>
* <element ref="{}slaves" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostNIC", propOrder = {
"host",
"network",
"mac",
"ip",
"vlan",
"slaves"
})
public class HostNIC
extends BaseResource
{
protected Host host;
protected Network network;
protected MAC mac;
protected IP ip;
protected VLAN vlan;
protected Slaves slaves;
/**
* Gets the value of the host property.
*
* @return
* possible object is
* {@link Host }
*
*/
public Host getHost() {
return host;
}
/**
* Sets the value of the host property.
*
* @param value
* allowed object is
* {@link Host }
*
*/
public void setHost(Host value) {
this.host = value;
}
public boolean isSetHost() {
return (this.host!= null);
}
/**
* Gets the value of the network property.
*
* @return
* possible object is
* {@link Network }
*
*/
public Network getNetwork() {
return network;
}
/**
* Sets the value of the network property.
*
* @param value
* allowed object is
* {@link Network }
*
*/
public void setNetwork(Network value) {
this.network = value;
}
public boolean isSetNetwork() {
return (this.network!= null);
}
/**
* Gets the value of the mac property.
*
* @return
* possible object is
* {@link MAC }
*
*/
public MAC getMac() {
return mac;
}
/**
* Sets the value of the mac property.
*
* @param value
* allowed object is
* {@link MAC }
*
*/
public void setMac(MAC value) {
this.mac = value;
}
public boolean isSetMac() {
return (this.mac!= null);
}
/**
* Gets the value of the ip property.
*
* @return
* possible object is
* {@link IP }
*
*/
public IP getIp() {
return ip;
}
/**
* Sets the value of the ip property.
*
* @param value
* allowed object is
* {@link IP }
*
*/
public void setIp(IP value) {
this.ip = value;
}
public boolean isSetIp() {
return (this.ip!= null);
}
/**
* Gets the value of the vlan property.
*
* @return
* possible object is
* {@link VLAN }
*
*/
public VLAN getVlan() {
return vlan;
}
/**
* Sets the value of the vlan property.
*
* @param value
* allowed object is
* {@link VLAN }
*
*/
public void setVlan(VLAN value) {
this.vlan = value;
}
public boolean isSetVlan() {
return (this.vlan!= null);
}
/**
* Gets the value of the slaves property.
*
* @return
* possible object is
* {@link Slaves }
*
*/
public Slaves getSlaves() {
return slaves;
}
/**
* Sets the value of the slaves property.
*
* @param value
* allowed object is
* {@link Slaves }
*
*/
public void setSlaves(Slaves value) {
this.slaves = value;
}
public boolean isSetSlaves() {
return (this.slaves!= null);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy