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

com.vmware.vim25.SourceNodeSpec 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 SourceNodeSpec complex type. * *

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

 * <complexType name="SourceNodeSpec">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="managementVc" type="{urn:vim25}ServiceLocator"/>
 *         <element name="activeVc" type="{urn:vim25}ManagedObjectReference"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SourceNodeSpec", propOrder = { "managementVc", "activeVc" }) public class SourceNodeSpec extends DynamicData { @XmlElement(required = true) protected ServiceLocator managementVc; @XmlElement(required = true) protected ManagedObjectReference activeVc; /** * Gets the value of the managementVc property. * * @return * possible object is * {@link ServiceLocator } * */ public ServiceLocator getManagementVc() { return managementVc; } /** * Sets the value of the managementVc property. * * @param value * allowed object is * {@link ServiceLocator } * */ public void setManagementVc(ServiceLocator value) { this.managementVc = value; } /** * Gets the value of the activeVc property. * * @return * possible object is * {@link ManagedObjectReference } * */ public ManagedObjectReference getActiveVc() { return activeVc; } /** * Sets the value of the activeVc property. * * @param value * allowed object is * {@link ManagedObjectReference } * */ public void setActiveVc(ManagedObjectReference value) { this.activeVc = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy