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

com.vmware.vim25.DvsSingleIpPort Maven / Gradle / Ivy

The newest version!

package com.vmware.vim25;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for DvsSingleIpPort complex type. * *

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

 * <complexType name="DvsSingleIpPort">
 *   <complexContent>
 *     <extension base="{urn:vim25}DvsIpPort">
 *       <sequence>
 *         <element name="portNumber" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DvsSingleIpPort", propOrder = { "portNumber" }) public class DvsSingleIpPort extends DvsIpPort { protected int portNumber; /** * Gets the value of the portNumber property. * */ public int getPortNumber() { return portNumber; } /** * Sets the value of the portNumber property. * */ public void setPortNumber(int value) { this.portNumber = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy