javax.management.DynamicMBean
, javax.management.MBeanRegistration
, javax.management.NotificationBroadcaster
, RuntimeMBean
, WebLogicMBean
public interface SpringBeanDefinitionRuntimeMBean extends RuntimeMBean
Modifier and Type | Field | Description |
---|---|---|
static int |
ROLE_APPLICATION |
Application role hint.
|
static int |
ROLE_INFRASTRUCTURE |
Infrastructure role hint.
|
static int |
ROLE_SUPPORT |
Support role hint.
|
Modifier and Type | Method | Description |
---|---|---|
java.lang.String[] |
getAliases() |
Get the aliases for this bean definition.
|
java.lang.String |
getApplicationContextDisplayName() |
Display name of the application context that this Spring bean is
defined in.
|
java.lang.String |
getBeanClassname() |
Class name of this Spring bean, as defined in the application
context of the Spring application.
|
java.lang.String |
getBeanId() |
Name of the Spring bean.
|
java.lang.String[] |
getDependencies() |
Get the names (ids) of other bean definitions that this bean definition
depends on.
|
SpringBeanDependencyValue[] |
getDependencyValues() |
Dependency values to be injected into this bean.
|
java.lang.String |
getParentId() |
Name (Id) of parent bean definition.
|
java.lang.String |
getResourceDescription() |
The name of the resource that this bean definition comes from.
|
int |
getRole() |
Role hint of this bean definition.
|
java.lang.String |
getScope() |
Scope of this bean.
|
boolean |
isAbstract() |
Whether this Spring bean is "abstract".
|
boolean |
isAutowireCandidate() |
Whether this bean is a candidate to be autowired to other beans.
|
boolean |
isLazyInit() |
Whether this bean should be lazily initialized.
|
boolean |
isSingleton() |
Whether this is a singleton Spring bean.
|
getAttribute, getAttributes, invoke, setAttribute, setAttributes
postDeregister, postRegister, preRegister
addNotificationListener, getNotificationInfo, removeNotificationListener
addPropertyChangeListener, removePropertyChangeListener
getMBeanInfo, getName, getObjectName, getParent, getType, isCachingDisabled, isRegistered, setName, setParent
static final int ROLE_APPLICATION
static final int ROLE_SUPPORT
static final int ROLE_INFRASTRUCTURE
java.lang.String getBeanId()
Name of the Spring bean.
java.lang.String[] getAliases()
Get the aliases for this bean definition. Aliases are other names this bean definition is known by.
java.lang.String[] getDependencies()
Get the names (ids) of other bean definitions that this bean definition depends on.
java.lang.String getBeanClassname()
Class name of this Spring bean, as defined in the application context of the Spring application.
java.lang.String getParentId()
Name (Id) of parent bean definition.
int getRole()
Role hint of this bean definition. The role is one of ROLE_APPLICATION, ROLE_SUPPORT, or ROLE_INFRASTRUCTURE.
java.lang.String getScope()
Scope of this bean. The scope is "singleton", "prototype", or other web specific or user defined values.
boolean isAbstract()
Whether this Spring bean is "abstract". An abstract bean definition can be used as a base for other definitions but cannot be instantiated.
boolean isLazyInit()
Whether this bean should be lazily initialized. A lazy initialized bean is not created until it is needed.
boolean isAutowireCandidate()
Whether this bean is a candidate to be autowired to other beans.
java.lang.String getResourceDescription()
The name of the resource that this bean definition comes from. May be empty if the bean is implicitly registered.
boolean isSingleton()
Whether this is a singleton Spring bean. There is just one instance of a singleton bean per bean definition per application context.
java.lang.String getApplicationContextDisplayName()
Display name of the application context that this Spring bean is defined in. The application context is the Spring Inversion of Control (IoC) container.
SpringBeanDependencyValue[] getDependencyValues()
Dependency values to be injected into this bean.