Package org.opennms.netmgt.config.wsman
Class Collection
- java.lang.Object
-
- org.opennms.netmgt.config.wsman.Collection
-
public class Collection extends Object
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/wsman-datacollection}rrd"/> <element name="include-all-system-definitions"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> </restriction> </complexContent> </complexType> </element> <element name="include-system-definition" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/> </sequence> <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Collection.IncludeAllSystemDefinitions
Java class for anonymous complex type.
-
Field Summary
Fields Modifier and Type Field Description protected Collection.IncludeAllSystemDefinitions
includeAllSystemDefinitions
protected List<String>
includeSystemDefinition
protected String
name
protected Rrd
rrd
-
Constructor Summary
Constructors Constructor Description Collection()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
Collection.IncludeAllSystemDefinitions
getIncludeAllSystemDefinitions()
Gets the value of the includeAllSystemDefinitions property.List<String>
getIncludeSystemDefinition()
Gets the value of the includeSystemDefinition property.String
getName()
Gets the value of the name property.Rrd
getRrd()
Gets the value of the rrd property.int
hashCode()
void
setIncludeAllSystemDefinitions(Collection.IncludeAllSystemDefinitions value)
Sets the value of the includeAllSystemDefinitions property.void
setName(String value)
Sets the value of the name property.void
setRrd(Rrd value)
Sets the value of the rrd property.
-
-
-
Field Detail
-
rrd
protected Rrd rrd
-
includeAllSystemDefinitions
protected Collection.IncludeAllSystemDefinitions includeAllSystemDefinitions
-
name
protected String name
-
-
Method Detail
-
setRrd
public void setRrd(Rrd value)
Sets the value of the rrd property.- Parameters:
value
- allowed object isRrd
-
getIncludeAllSystemDefinitions
public Collection.IncludeAllSystemDefinitions getIncludeAllSystemDefinitions()
Gets the value of the includeAllSystemDefinitions property.- Returns:
- possible object is
Collection.IncludeAllSystemDefinitions
-
setIncludeAllSystemDefinitions
public void setIncludeAllSystemDefinitions(Collection.IncludeAllSystemDefinitions value)
Sets the value of the includeAllSystemDefinitions property.- Parameters:
value
- allowed object isCollection.IncludeAllSystemDefinitions
-
getIncludeSystemDefinition
public List<String> getIncludeSystemDefinition()
Gets the value of the includeSystemDefinition 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 includeSystemDefinition property.For example, to add a new item, do as follows:
getIncludeSystemDefinition().add(newItem);
Objects of the following type(s) are allowed in the list
String
-
getName
public String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(String value)
Sets the value of the name property.- Parameters:
value
- allowed object isString
-
-