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

com.vmware.vim.NetworkSummary Maven / Gradle / Ivy

The newest version!

package com.vmware.vim;

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 NetworkSummary complex type. * *

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

 * <complexType name="NetworkSummary">
 *   <complexContent>
 *     <extension base="{urn:vim2}DynamicData">
 *       <sequence>
 *         <element name="network" type="{urn:vim2}ManagedObjectReference" minOccurs="0"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="accessible" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NetworkSummary", propOrder = { "network", "name", "accessible" }) public class NetworkSummary extends DynamicData { protected ManagedObjectReference network; @XmlElement(required = true) protected String name; protected boolean accessible; /** * Gets the value of the network property. * * @return * possible object is * {@link ManagedObjectReference } * */ public ManagedObjectReference getNetwork() { return network; } /** * Sets the value of the network property. * * @param value * allowed object is * {@link ManagedObjectReference } * */ public void setNetwork(ManagedObjectReference value) { this.network = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the accessible property. * */ public boolean isAccessible() { return accessible; } /** * Sets the value of the accessible property. * */ public void setAccessible(boolean value) { this.accessible = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy