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

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

There is a newer version: 0.6.60
Show newest version

package com.vmware.vim25;

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

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

 * <complexType name="VchaClusterNetworkSpec">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="witnessNetworkSpec" type="{urn:vim25}NodeNetworkSpec"/>
 *         <element name="passiveNetworkSpec" type="{urn:vim25}PassiveNodeNetworkSpec"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VchaClusterNetworkSpec", propOrder = { "witnessNetworkSpec", "passiveNetworkSpec" }) public class VchaClusterNetworkSpec extends DynamicData { @XmlElement(required = true) protected NodeNetworkSpec witnessNetworkSpec; @XmlElement(required = true) protected PassiveNodeNetworkSpec passiveNetworkSpec; /** * Gets the value of the witnessNetworkSpec property. * * @return * possible object is * {@link NodeNetworkSpec } * */ public NodeNetworkSpec getWitnessNetworkSpec() { return witnessNetworkSpec; } /** * Sets the value of the witnessNetworkSpec property. * * @param value * allowed object is * {@link NodeNetworkSpec } * */ public void setWitnessNetworkSpec(NodeNetworkSpec value) { this.witnessNetworkSpec = value; } /** * Gets the value of the passiveNetworkSpec property. * * @return * possible object is * {@link PassiveNodeNetworkSpec } * */ public PassiveNodeNetworkSpec getPassiveNetworkSpec() { return passiveNetworkSpec; } /** * Sets the value of the passiveNetworkSpec property. * * @param value * allowed object is * {@link PassiveNodeNetworkSpec } * */ public void setPassiveNetworkSpec(PassiveNodeNetworkSpec value) { this.passiveNetworkSpec = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy