Class Attrib
- java.lang.Object
-
- org.opennms.netmgt.config.httpdatacollection.Attrib
-
- All Implemented Interfaces:
Serializable
public class Attrib extends Object implements 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"> <attribute name="alias" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="match-group" use="required"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}int"> <minInclusive value="1"/> </restriction> </simpleType> </attribute> <attribute name="type" use="required" type="{http://xmlns.opennms.org/xsd/config/http-datacollection}allowed-types" /> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected String
m_alias
protected int
m_matchGroup
protected AttributeType
m_type
-
Constructor Summary
Constructors Constructor Description Attrib()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object other)
String
getAlias()
int
getMatchGroup()
AttributeType
getType()
int
hashCode()
void
setAlias(String value)
void
setMatchGroup(int value)
void
setType(AttributeType value)
-
-
-
Field Detail
-
m_alias
protected String m_alias
-
m_matchGroup
protected int m_matchGroup
-
m_type
protected AttributeType m_type
-
-
Method Detail
-
getAlias
public String getAlias()
-
setAlias
public void setAlias(String value)
-
getMatchGroup
public int getMatchGroup()
-
setMatchGroup
public void setMatchGroup(int value)
-
getType
public AttributeType getType()
-
setType
public void setType(AttributeType value)
-
-