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

com.vmware.vim25.NetIpConfigInfoIpAddress 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for NetIpConfigInfoIpAddress complex type. * *

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

 * <complexType name="NetIpConfigInfoIpAddress">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="ipAddress" 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" minOccurs="0"/>
 *         <element name="state" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="lifetime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NetIpConfigInfoIpAddress", propOrder = { "ipAddress", "prefixLength", "origin", "state", "lifetime" }) public class NetIpConfigInfoIpAddress extends DynamicData { @XmlElement(required = true) protected String ipAddress; protected int prefixLength; protected String origin; protected String state; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lifetime; /** * Gets the value of the ipAddress property. * * @return * possible object is * {@link String } * */ public String getIpAddress() { return ipAddress; } /** * Sets the value of the ipAddress property. * * @param value * allowed object is * {@link String } * */ public void setIpAddress(String value) { this.ipAddress = 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 state property. * * @return * possible object is * {@link String } * */ public String getState() { return state; } /** * Sets the value of the state property. * * @param value * allowed object is * {@link String } * */ public void setState(String value) { this.state = value; } /** * Gets the value of the lifetime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getLifetime() { return lifetime; } /** * Sets the value of the lifetime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setLifetime(XMLGregorianCalendar value) { this.lifetime = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy