com.vmware.vim25.VspanPortConflict Maven / Gradle / Ivy
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 VspanPortConflict complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VspanPortConflict">
* <complexContent>
* <extension base="{urn:vim25}DvsFault">
* <sequence>
* <element name="vspanSessionKey1" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="vspanSessionKey2" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="portKey" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VspanPortConflict", propOrder = {
"vspanSessionKey1",
"vspanSessionKey2",
"portKey"
})
public class VspanPortConflict
extends DvsFault
{
@XmlElement(required = true)
protected String vspanSessionKey1;
@XmlElement(required = true)
protected String vspanSessionKey2;
@XmlElement(required = true)
protected String portKey;
/**
* Gets the value of the vspanSessionKey1 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVspanSessionKey1() {
return vspanSessionKey1;
}
/**
* Sets the value of the vspanSessionKey1 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVspanSessionKey1(String value) {
this.vspanSessionKey1 = value;
}
/**
* Gets the value of the vspanSessionKey2 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVspanSessionKey2() {
return vspanSessionKey2;
}
/**
* Sets the value of the vspanSessionKey2 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVspanSessionKey2(String value) {
this.vspanSessionKey2 = value;
}
/**
* 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;
}
}