Package org.opennms.netmgt.config.wsman
Class Group
- java.lang.Object
-
- org.opennms.netmgt.config.wsman.Group
-
public class Group 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}attrib" maxOccurs="unbounded"/> </sequence> <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="resource-uri" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="dialect" type="{http://www.w3.org/2001/XMLSchema}string" default="http://schemas.dmtf.org/wbem/cql/1/dsp0202.pdf" /> <attribute name="filter" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="resource-type" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description Group()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addAttrib(Attrib attr)
boolean
equals(Object obj)
List<Attrib>
getAttrib()
Gets the value of the attrib property.String
getDialect()
Gets the value of the dialect property.String
getFilter()
Gets the value of the filter property.String
getName()
Gets the value of the name property.String
getResourceType()
Gets the value of the resourceType property.String
getResourceUri()
Gets the value of the resourceUri property.int
hashCode()
void
setDialect(String value)
Sets the value of the dialect property.void
setFilter(String value)
Sets the value of the filter property.void
setName(String value)
Sets the value of the name property.void
setResourceType(String value)
Sets the value of the resourceType property.void
setResourceUri(String value)
Sets the value of the resourceUri property.
-
-
-
Method Detail
-
getAttrib
public List<Attrib> getAttrib()
Gets the value of the attrib 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 attrib property.For example, to add a new item, do as follows:
getAttrib().add(newItem);
Objects of the following type(s) are allowed in the list
Attrib
-
addAttrib
public void addAttrib(Attrib attr)
-
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
-
getResourceUri
public String getResourceUri()
Gets the value of the resourceUri property.- Returns:
- possible object is
String
-
setResourceUri
public void setResourceUri(String value)
Sets the value of the resourceUri property.- Parameters:
value
- allowed object isString
-
getDialect
public String getDialect()
Gets the value of the dialect property.- Returns:
- possible object is
String
-
setDialect
public void setDialect(String value)
Sets the value of the dialect property.- Parameters:
value
- allowed object isString
-
getFilter
public String getFilter()
Gets the value of the filter property.- Returns:
- possible object is
String
-
setFilter
public void setFilter(String value)
Sets the value of the filter property.- Parameters:
value
- allowed object isString
-
getResourceType
public String getResourceType()
Gets the value of the resourceType property.- Returns:
- possible object is
String
-
setResourceType
public void setResourceType(String value)
Sets the value of the resourceType property.- Parameters:
value
- allowed object isString
-
-