![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.HostSnmpConfigSpec Maven / Gradle / Ivy
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.XmlType;
/**
* Java class for HostSnmpConfigSpec complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostSnmpConfigSpec">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="enabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="port" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="readOnlyCommunities" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="trapTargets" type="{urn:vim25}HostSnmpDestination" maxOccurs="unbounded" minOccurs="0"/>
* <element name="option" type="{urn:vim25}KeyValue" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostSnmpConfigSpec", propOrder = {
"enabled",
"port",
"readOnlyCommunities",
"trapTargets",
"option"
})
public class HostSnmpConfigSpec
extends DynamicData
{
protected Boolean enabled;
protected Integer port;
protected List readOnlyCommunities;
protected List trapTargets;
protected List option;
/**
* Gets the value of the enabled property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isEnabled() {
return enabled;
}
/**
* Sets the value of the enabled property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setEnabled(Boolean value) {
this.enabled = value;
}
/**
* Gets the value of the port property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getPort() {
return port;
}
/**
* Sets the value of the port property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setPort(Integer value) {
this.port = value;
}
/**
* Gets the value of the readOnlyCommunities 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 readOnlyCommunities property.
*
*
* For example, to add a new item, do as follows:
*
* getReadOnlyCommunities().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getReadOnlyCommunities() {
if (readOnlyCommunities == null) {
readOnlyCommunities = new ArrayList();
}
return this.readOnlyCommunities;
}
/**
* Gets the value of the trapTargets 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 trapTargets property.
*
*
* For example, to add a new item, do as follows:
*
* getTrapTargets().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link HostSnmpDestination }
*
*
*/
public List getTrapTargets() {
if (trapTargets == null) {
trapTargets = new ArrayList();
}
return this.trapTargets;
}
/**
* Gets the value of the option 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 option property.
*
*
* For example, to add a new item, do as follows:
*
* getOption().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link KeyValue }
*
*
*/
public List getOption() {
if (option == null) {
option = new ArrayList();
}
return this.option;
}
}