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

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

The newest version!

package com.vmware.vim25;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for DvsNotAuthorized complex type. * *

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

 * <complexType name="DvsNotAuthorized">
 *   <complexContent>
 *     <extension base="{urn:vim25}DvsFault">
 *       <sequence>
 *         <element name="sessionExtensionKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="dvsExtensionKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DvsNotAuthorized", propOrder = { "sessionExtensionKey", "dvsExtensionKey" }) public class DvsNotAuthorized extends DvsFault { protected String sessionExtensionKey; protected String dvsExtensionKey; /** * Gets the value of the sessionExtensionKey property. * * @return * possible object is * {@link String } * */ public String getSessionExtensionKey() { return sessionExtensionKey; } /** * Sets the value of the sessionExtensionKey property. * * @param value * allowed object is * {@link String } * */ public void setSessionExtensionKey(String value) { this.sessionExtensionKey = value; } /** * Gets the value of the dvsExtensionKey property. * * @return * possible object is * {@link String } * */ public String getDvsExtensionKey() { return dvsExtensionKey; } /** * Sets the value of the dvsExtensionKey property. * * @param value * allowed object is * {@link String } * */ public void setDvsExtensionKey(String value) { this.dvsExtensionKey = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy