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

com.vmware.vim25.HostNoAvailableNetworksEvent Maven / Gradle / Ivy


package com.vmware.vim25;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for HostNoAvailableNetworksEvent complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="HostNoAvailableNetworksEvent">
 *   <complexContent>
 *     <extension base="{urn:vim25}HostDasEvent">
 *       <sequence>
 *         <element name="ips" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostNoAvailableNetworksEvent", propOrder = { "ips" }) public class HostNoAvailableNetworksEvent extends HostDasEvent { protected String ips; /** * Gets the value of the ips property. * * @return * possible object is * {@link String } * */ public String getIps() { return ips; } /** * Sets the value of the ips property. * * @param value * allowed object is * {@link String } * */ public void setIps(String value) { this.ips = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy