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

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: 2011.09.04 at 05:40:00 PM IDT 
//


package com.redhat.rhevm.api.model;

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 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="{}bonding" minOccurs="0"/>
 *         <element name="boot_protocol" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="statistics" type="{}Statistics" minOccurs="0"/>
 *         <element name="check_connectivity" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="speed" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element ref="{}status" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostNIC", propOrder = { "host", "network", "mac", "ip", "vlan", "bonding", "bootProtocol", "statistics", "checkConnectivity", "speed", "status" }) public class HostNIC extends BaseResource { protected Host host; protected Network network; protected MAC mac; protected IP ip; protected VLAN vlan; protected Bonding bonding; @XmlElement(name = "boot_protocol") protected String bootProtocol; protected Statistics statistics; @XmlElement(name = "check_connectivity") protected Boolean checkConnectivity; protected Long speed; protected Status status; /** * 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 bonding property. * * @return * possible object is * {@link Bonding } * */ public Bonding getBonding() { return bonding; } /** * Sets the value of the bonding property. * * @param value * allowed object is * {@link Bonding } * */ public void setBonding(Bonding value) { this.bonding = value; } public boolean isSetBonding() { return (this.bonding!= null); } /** * Gets the value of the bootProtocol property. * * @return * possible object is * {@link String } * */ public String getBootProtocol() { return bootProtocol; } /** * Sets the value of the bootProtocol property. * * @param value * allowed object is * {@link String } * */ public void setBootProtocol(String value) { this.bootProtocol = value; } public boolean isSetBootProtocol() { return (this.bootProtocol!= null); } /** * Gets the value of the statistics property. * * @return * possible object is * {@link Statistics } * */ public Statistics getStatistics() { return statistics; } /** * Sets the value of the statistics property. * * @param value * allowed object is * {@link Statistics } * */ public void setStatistics(Statistics value) { this.statistics = value; } public boolean isSetStatistics() { return (this.statistics!= null); } /** * Gets the value of the checkConnectivity property. * * @return * possible object is * {@link Boolean } * */ public Boolean isCheckConnectivity() { return checkConnectivity; } /** * Sets the value of the checkConnectivity property. * * @param value * allowed object is * {@link Boolean } * */ public void setCheckConnectivity(Boolean value) { this.checkConnectivity = value; } public boolean isSetCheckConnectivity() { return (this.checkConnectivity!= null); } /** * Gets the value of the speed property. * * @return * possible object is * {@link Long } * */ public Long getSpeed() { return speed; } /** * Sets the value of the speed property. * * @param value * allowed object is * {@link Long } * */ public void setSpeed(Long value) { this.speed = value; } public boolean isSetSpeed() { return (this.speed!= null); } /** * Gets the value of the status property. * * @return * possible object is * {@link Status } * */ public Status getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link Status } * */ public void setStatus(Status value) { this.status = value; } public boolean isSetStatus() { return (this.status!= null); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy