Package org.apache.tomcat.util.modeler
Class FeatureInfo
- java.lang.Object
-
- org.apache.tomcat.util.modeler.FeatureInfo
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AttributeInfo
,NotificationInfo
,OperationInfo
,ParameterInfo
public class FeatureInfo extends Object implements Serializable
Convenience base class for
AttributeInfo
andOperationInfo
classes that will be used to collect configuration information for theModelMBean
beans exposed for management.- Author:
- Craig R. McClanahan
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected String
description
protected MBeanFeatureInfo
info
protected String
name
protected String
type
-
Constructor Summary
Constructors Constructor Description FeatureInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
String
getName()
String
getType()
void
setDescription(String description)
void
setName(String name)
void
setType(String type)
-
-
-
Field Detail
-
description
protected String description
-
name
protected String name
-
info
protected MBeanFeatureInfo info
-
type
protected String type
-
-
Method Detail
-
getDescription
public String getDescription()
- Returns:
- the human-readable description of this feature.
-
setDescription
public void setDescription(String description)
-
getName
public String getName()
- Returns:
- the name of this feature, which must be unique among features in the same collection.
-
setName
public void setName(String name)
-
getType
public String getType()
- Returns:
- the fully qualified Java class name of this element.
-
setType
public void setType(String type)
-
-