com.vmware.vim25.HostSystemIdentificationInfo 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 HostSystemIdentificationInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostSystemIdentificationInfo">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="identifierValue" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="identifierType" type="{urn:vim25}ElementDescription"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostSystemIdentificationInfo", propOrder = {
"identifierValue",
"identifierType"
})
public class HostSystemIdentificationInfo
extends DynamicData
{
@XmlElement(required = true)
protected String identifierValue;
@XmlElement(required = true)
protected ElementDescription identifierType;
/**
* Gets the value of the identifierValue property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIdentifierValue() {
return identifierValue;
}
/**
* Sets the value of the identifierValue property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIdentifierValue(String value) {
this.identifierValue = value;
}
/**
* Gets the value of the identifierType property.
*
* @return
* possible object is
* {@link ElementDescription }
*
*/
public ElementDescription getIdentifierType() {
return identifierType;
}
/**
* Sets the value of the identifierType property.
*
* @param value
* allowed object is
* {@link ElementDescription }
*
*/
public void setIdentifierType(ElementDescription value) {
this.identifierType = value;
}
}