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,ManagedAttributeandManagedOperationannotations.- Since:
- 10.0
- Author:
- Dan Berindei
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classMBeanMetadata.AttributeMetadatastatic classMBeanMetadata.OperationMetadatastatic classMBeanMetadata.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()StringgetDescription()StringgetJmxObjectName()Collection<MBeanMetadata.OperationMetadata>getOperations()StringgetSuperMBeanClassName()static MBeanMetadataof(String objectName, String description, String superMBeanClassName, Object... attributesAndOperations)StringtoString()
-
-
-
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()
-
-