Class TcaDataCollection
- java.lang.Object
-
- org.opennms.netmgt.collectd.tca.config.TcaDataCollection
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TcaDataCollection>
public class TcaDataCollection extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<TcaDataCollection>
The Class TcaDataCollectionConfig.- Author:
- Alejandro Galue
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TcaDataCollection()
Instantiates a new TCA data collection.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(TcaDataCollection obj)
boolean
equals(java.lang.Object obj)
java.lang.String
getName()
Gets the collection name.TcaRrd
getRrd()
Gets the RRD.void
setName(java.lang.String name)
Sets the collection name.void
setRrd(TcaRrd rrd)
Sets the RRD.
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Gets the collection name.- Returns:
- the collection name
-
setName
public void setName(java.lang.String name)
Sets the collection name.- Parameters:
name
- the collection name
-
getRrd
public TcaRrd getRrd()
Gets the RRD.- Returns:
- the RRD
-
setRrd
public void setRrd(TcaRrd rrd)
Sets the RRD.- Parameters:
rrd
- the new RRD
-
compareTo
public int compareTo(TcaDataCollection obj)
- Specified by:
compareTo
in interfacejava.lang.Comparable<TcaDataCollection>
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
-