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

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

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

 * <complexType name="HostPlugStoreTopologyPath">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="key" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="channelNumber" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="targetNumber" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="lunNumber" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="adapter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="target" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="device" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostPlugStoreTopologyPath", propOrder = { "key", "name", "channelNumber", "targetNumber", "lunNumber", "adapter", "target", "device" }) public class HostPlugStoreTopologyPath extends DynamicData { @XmlElement(required = true) protected String key; @XmlElement(required = true) protected String name; protected Integer channelNumber; protected Integer targetNumber; protected Integer lunNumber; protected String adapter; protected String target; protected String device; /** * 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 name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the channelNumber property. * * @return * possible object is * {@link Integer } * */ public Integer getChannelNumber() { return channelNumber; } /** * Sets the value of the channelNumber property. * * @param value * allowed object is * {@link Integer } * */ public void setChannelNumber(Integer value) { this.channelNumber = value; } /** * Gets the value of the targetNumber property. * * @return * possible object is * {@link Integer } * */ public Integer getTargetNumber() { return targetNumber; } /** * Sets the value of the targetNumber property. * * @param value * allowed object is * {@link Integer } * */ public void setTargetNumber(Integer value) { this.targetNumber = value; } /** * Gets the value of the lunNumber property. * * @return * possible object is * {@link Integer } * */ public Integer getLunNumber() { return lunNumber; } /** * Sets the value of the lunNumber property. * * @param value * allowed object is * {@link Integer } * */ public void setLunNumber(Integer value) { this.lunNumber = value; } /** * Gets the value of the adapter property. * * @return * possible object is * {@link String } * */ public String getAdapter() { return adapter; } /** * Sets the value of the adapter property. * * @param value * allowed object is * {@link String } * */ public void setAdapter(String value) { this.adapter = value; } /** * Gets the value of the target property. * * @return * possible object is * {@link String } * */ public String getTarget() { return target; } /** * Sets the value of the target property. * * @param value * allowed object is * {@link String } * */ public void setTarget(String value) { this.target = value; } /** * Gets the value of the device property. * * @return * possible object is * {@link String } * */ public String getDevice() { return device; } /** * Sets the value of the device property. * * @param value * allowed object is * {@link String } * */ public void setDevice(String value) { this.device = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy