Package org.opennms.netmgt.config.wmi
Class WmiCollection
- java.lang.Object
-
- org.opennms.netmgt.config.wmi.WmiCollection
-
- All Implemented Interfaces:
java.io.Serializable
public class WmiCollection extends java.lang.Object implements java.io.Serializable
Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://xmlns.opennms.org/xsd/config/wmi-datacollection}rrd"/> <element ref="{http://xmlns.opennms.org/xsd/config/wmi-datacollection}wpms"/> </sequence> <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WmiCollection()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addWpm(Wpm wpm)
boolean
equals(java.lang.Object obj)
java.lang.String
getName()
Rrd
getRrd()
java.util.List<Wpm>
getWpms()
int
hashCode()
boolean
removeWpm(Wpm wpm)
void
setName(java.lang.String name)
void
setRrd(Rrd rrd)
void
setWpms(java.util.List<Wpm> wpms)
-
-
-
Method Detail
-
getRrd
public Rrd getRrd()
-
setRrd
public void setRrd(Rrd rrd)
-
getWpms
public java.util.List<Wpm> getWpms()
-
setWpms
public void setWpms(java.util.List<Wpm> wpms)
-
addWpm
public void addWpm(Wpm wpm)
-
removeWpm
public boolean removeWpm(Wpm wpm)
-
getName
public java.lang.String getName()
-
setName
public void setName(java.lang.String name)
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-