
com.vmware.vim25.HttpNfcLeaseDeviceUrl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vi-api Show documentation
Show all versions of vi-api Show documentation
This is a Java binding of the VMware Virtual Infrastructure SDK WSDL.
The 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 HttpNfcLeaseDeviceUrl complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HttpNfcLeaseDeviceUrl">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="key" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="importKey" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="sslThumbprint" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HttpNfcLeaseDeviceUrl", propOrder = {
"key",
"importKey",
"url",
"sslThumbprint"
})
public class HttpNfcLeaseDeviceUrl
extends DynamicData
{
@XmlElement(required = true)
protected String key;
@XmlElement(required = true)
protected String importKey;
@XmlElement(required = true)
protected String url;
@XmlElement(required = true)
protected String sslThumbprint;
/**
* Gets the value of the key property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKey() {
return key;
}
/**
* Sets the value of the key property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKey(String value) {
this.key = value;
}
/**
* Gets the value of the importKey property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getImportKey() {
return importKey;
}
/**
* Sets the value of the importKey property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setImportKey(String value) {
this.importKey = value;
}
/**
* Gets the value of the url property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUrl() {
return url;
}
/**
* Sets the value of the url property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUrl(String value) {
this.url = value;
}
/**
* Gets the value of the sslThumbprint property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSslThumbprint() {
return sslThumbprint;
}
/**
* Sets the value of the sslThumbprint property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSslThumbprint(String value) {
this.sslThumbprint = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy