Package org.opennms.netmgt.config.wmi
Class Attrib
- java.lang.Object
-
- org.opennms.netmgt.config.wmi.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="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="alias" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="wmiObject" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="type" use="required"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <pattern value="([Cc](ounter|OUNTER)|[Gg](auge|AUGE)|[Ss](tring|TRING))"/> </restriction> </simpleType> </attribute> <attribute name="maxval" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="minval" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Attrib()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getAlias()
Optional<String>
getMaxval()
Optional<String>
getMinval()
String
getName()
AttributeType
getType()
String
getWmiObject()
int
hashCode()
void
setAlias(String alias)
void
setMaxval(String maxval)
void
setMinval(String minval)
void
setName(String name)
void
setType(AttributeType value)
void
setWmiObject(String wmiObject)
-
-
-
Method Detail
-
getName
public String getName()
-
setName
public void setName(String name)
-
getAlias
public String getAlias()
-
setAlias
public void setAlias(String alias)
-
getWmiObject
public String getWmiObject()
-
setWmiObject
public void setWmiObject(String wmiObject)
-
getType
public AttributeType getType()
-
setType
public void setType(AttributeType value)
-
setMaxval
public void setMaxval(String maxval)
-
setMinval
public void setMinval(String minval)
-
-