Package org.infinispan.factories.impl
Class MBeanMetadata
- java.lang.Object
-
- org.infinispan.factories.impl.MBeanMetadata
-
public final class MBeanMetadata extends Object
JMX related component metadata, as expressed byMBean
,ManagedAttribute
andManagedOperation
annotations.- Since:
- 10.0
- Author:
- Dan Berindei
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
MBeanMetadata.AttributeMetadata
static class
MBeanMetadata.OperationMetadata
static class
MBeanMetadata.OperationParameterMetadata
-
Constructor Summary
Constructors Constructor Description MBeanMetadata(String jmxObjectName, String description, String superMBeanClassName, Collection<MBeanMetadata.AttributeMetadata> attributes, Collection<MBeanMetadata.OperationMetadata> operations)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<MBeanMetadata.AttributeMetadata>
getAttributes()
String
getDescription()
String
getJmxObjectName()
Collection<MBeanMetadata.OperationMetadata>
getOperations()
String
getSuperMBeanClassName()
static MBeanMetadata
of(String objectName, String description, String superMBeanClassName, Object... attributesAndOperations)
String
toString()
-
-
-
Constructor Detail
-
MBeanMetadata
public MBeanMetadata(String jmxObjectName, String description, String superMBeanClassName, Collection<MBeanMetadata.AttributeMetadata> attributes, Collection<MBeanMetadata.OperationMetadata> operations)
-
-
Method Detail
-
of
public static MBeanMetadata of(String objectName, String description, String superMBeanClassName, Object... attributesAndOperations)
-
getJmxObjectName
public String getJmxObjectName()
-
getDescription
public String getDescription()
-
getSuperMBeanClassName
public String getSuperMBeanClassName()
-
getAttributes
public Collection<MBeanMetadata.AttributeMetadata> getAttributes()
-
getOperations
public Collection<MBeanMetadata.OperationMetadata> getOperations()
-
-