com.vmware.vim25.VMwareIpfixConfig Maven / Gradle / Ivy
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 VMwareIpfixConfig complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VMwareIpfixConfig">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="collectorIpAddress" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="collectorPort" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="observationDomainId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="activeFlowTimeout" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="idleFlowTimeout" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="samplingRate" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="internalFlowsOnly" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VMwareIpfixConfig", propOrder = {
"collectorIpAddress",
"collectorPort",
"observationDomainId",
"activeFlowTimeout",
"idleFlowTimeout",
"samplingRate",
"internalFlowsOnly"
})
public class VMwareIpfixConfig
extends DynamicData
{
protected String collectorIpAddress;
protected Integer collectorPort;
protected Long observationDomainId;
protected int activeFlowTimeout;
protected int idleFlowTimeout;
protected int samplingRate;
protected boolean internalFlowsOnly;
/**
* Gets the value of the collectorIpAddress property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCollectorIpAddress() {
return collectorIpAddress;
}
/**
* Sets the value of the collectorIpAddress property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCollectorIpAddress(String value) {
this.collectorIpAddress = value;
}
/**
* Gets the value of the collectorPort property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getCollectorPort() {
return collectorPort;
}
/**
* Sets the value of the collectorPort property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setCollectorPort(Integer value) {
this.collectorPort = value;
}
/**
* Gets the value of the observationDomainId property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getObservationDomainId() {
return observationDomainId;
}
/**
* Sets the value of the observationDomainId property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setObservationDomainId(Long value) {
this.observationDomainId = value;
}
/**
* Gets the value of the activeFlowTimeout property.
*
*/
public int getActiveFlowTimeout() {
return activeFlowTimeout;
}
/**
* Sets the value of the activeFlowTimeout property.
*
*/
public void setActiveFlowTimeout(int value) {
this.activeFlowTimeout = value;
}
/**
* Gets the value of the idleFlowTimeout property.
*
*/
public int getIdleFlowTimeout() {
return idleFlowTimeout;
}
/**
* Sets the value of the idleFlowTimeout property.
*
*/
public void setIdleFlowTimeout(int value) {
this.idleFlowTimeout = value;
}
/**
* Gets the value of the samplingRate property.
*
*/
public int getSamplingRate() {
return samplingRate;
}
/**
* Sets the value of the samplingRate property.
*
*/
public void setSamplingRate(int value) {
this.samplingRate = value;
}
/**
* Gets the value of the internalFlowsOnly property.
*
*/
public boolean isInternalFlowsOnly() {
return internalFlowsOnly;
}
/**
* Sets the value of the internalFlowsOnly property.
*
*/
public void setInternalFlowsOnly(boolean value) {
this.internalFlowsOnly = value;
}
}