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

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

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

 * <complexType name="HostInternetScsiHbaIscsiIpv6Address">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="prefixLength" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="origin" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="operation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostInternetScsiHbaIscsiIpv6Address", propOrder = { "address", "prefixLength", "origin", "operation" }) public class HostInternetScsiHbaIscsiIpv6Address extends DynamicData { @XmlElement(required = true) protected String address; protected int prefixLength; @XmlElement(required = true) protected String origin; protected String operation; /** * Gets the value of the address property. * * @return * possible object is * {@link String } * */ public String getAddress() { return address; } /** * Sets the value of the address property. * * @param value * allowed object is * {@link String } * */ public void setAddress(String value) { this.address = value; } /** * Gets the value of the prefixLength property. * */ public int getPrefixLength() { return prefixLength; } /** * Sets the value of the prefixLength property. * */ public void setPrefixLength(int value) { this.prefixLength = value; } /** * Gets the value of the origin property. * * @return * possible object is * {@link String } * */ public String getOrigin() { return origin; } /** * Sets the value of the origin property. * * @param value * allowed object is * {@link String } * */ public void setOrigin(String value) { this.origin = value; } /** * Gets the value of the operation property. * * @return * possible object is * {@link String } * */ public String getOperation() { return operation; } /** * Sets the value of the operation property. * * @param value * allowed object is * {@link String } * */ public void setOperation(String value) { this.operation = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy