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

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

There is a newer version: 0.6.60
Show newest version

package com.vmware.vim25;

import java.util.ArrayList;
import java.util.List;
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 LinkLayerDiscoveryProtocolInfo complex type. * *

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

 * <complexType name="LinkLayerDiscoveryProtocolInfo">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="chassisId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="portId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="timeToLive" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="parameter" type="{urn:vim25}KeyAnyValue" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LinkLayerDiscoveryProtocolInfo", propOrder = { "chassisId", "portId", "timeToLive", "parameter" }) public class LinkLayerDiscoveryProtocolInfo extends DynamicData { @XmlElement(required = true) protected String chassisId; @XmlElement(required = true) protected String portId; protected int timeToLive; protected List parameter; /** * Gets the value of the chassisId property. * * @return * possible object is * {@link String } * */ public String getChassisId() { return chassisId; } /** * Sets the value of the chassisId property. * * @param value * allowed object is * {@link String } * */ public void setChassisId(String value) { this.chassisId = value; } /** * Gets the value of the portId property. * * @return * possible object is * {@link String } * */ public String getPortId() { return portId; } /** * Sets the value of the portId property. * * @param value * allowed object is * {@link String } * */ public void setPortId(String value) { this.portId = value; } /** * Gets the value of the timeToLive property. * */ public int getTimeToLive() { return timeToLive; } /** * Sets the value of the timeToLive property. * */ public void setTimeToLive(int value) { this.timeToLive = value; } /** * Gets the value of the parameter property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the parameter property. * *

* For example, to add a new item, do as follows: *

     *    getParameter().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link KeyAnyValue } * * */ public List getParameter() { if (parameter == null) { parameter = new ArrayList(); } return this.parameter; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy