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

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

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

 * <complexType name="DvsPortJoinPortgroupEvent">
 *   <complexContent>
 *     <extension base="{urn:vim25}DvsEvent">
 *       <sequence>
 *         <element name="portKey" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="portgroupKey" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="portgroupName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DvsPortJoinPortgroupEvent", propOrder = { "portKey", "portgroupKey", "portgroupName" }) public class DvsPortJoinPortgroupEvent extends DvsEvent { @XmlElement(required = true) protected String portKey; @XmlElement(required = true) protected String portgroupKey; @XmlElement(required = true) protected String portgroupName; /** * Gets the value of the portKey property. * * @return * possible object is * {@link String } * */ public String getPortKey() { return portKey; } /** * Sets the value of the portKey property. * * @param value * allowed object is * {@link String } * */ public void setPortKey(String value) { this.portKey = value; } /** * Gets the value of the portgroupKey property. * * @return * possible object is * {@link String } * */ public String getPortgroupKey() { return portgroupKey; } /** * Sets the value of the portgroupKey property. * * @param value * allowed object is * {@link String } * */ public void setPortgroupKey(String value) { this.portgroupKey = value; } /** * Gets the value of the portgroupName property. * * @return * possible object is * {@link String } * */ public String getPortgroupName() { return portgroupName; } /** * Sets the value of the portgroupName property. * * @param value * allowed object is * {@link String } * */ public void setPortgroupName(String value) { this.portgroupName = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy