Package org.apache.commons.modeler
Class FieldInfo
- java.lang.Object
-
- org.apache.commons.modeler.FieldInfo
-
- All Implemented Interfaces:
java.io.Serializable
public class FieldInfo extends java.lang.Object implements java.io.Serializable
Simple JavaBean representing the contents of a
<field>
element in an MBeans descriptor file.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.String
name
The field name for this field of a descriptor.(package private) static long
serialVersionUID
protected java.lang.Object
value
The field value for this field of a descriptor.
-
Constructor Summary
Constructors Constructor Description FieldInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
java.lang.Object
getValue()
void
setName(java.lang.String name)
void
setValue(java.lang.Object value)
-
-
-
Field Detail
-
serialVersionUID
static final long serialVersionUID
- See Also:
- Constant Field Values
-
name
protected java.lang.String name
The field name for this field of a descriptor.
-
value
protected java.lang.Object value
The field value for this field of a descriptor.
-
-