mx4j.server.interceptor
Interface MBeanServerInterceptorConfiguratorMBean
- MBeanServerInterceptorConfigurator
public interface MBeanServerInterceptorConfiguratorMBean
Management interface for the MBeanServerInterceptorConfigurator MBean.
void | addInterceptor(MBeanServerInterceptor interceptor) - Appends the given interceptor, provided by the client, to the existing interceptor chain.
|
void | clearInterceptors() - Removes all the interceptors added via
addInterceptor(MBeanServerInterceptor interceptor) .
|
boolean | isRunning() - Returns whether this configurator is running and thus if the MBeanServer can accept incoming calls
|
void | registerInterceptor(MBeanServerInterceptor interceptor, javax.management.ObjectName name) - Appends the given interceptor, provided by the client, to the existing interceptor chain and registers it as MBean.
|
void | start() - Starts this configurator, so that the MBeanServer is now able to accept incoming calls.
|
void | stop() - Stops this configurator, so that the MBeanServer is not able to accept incoming calls.
|
addInterceptor
public void addInterceptor(MBeanServerInterceptor interceptor)
Appends the given interceptor, provided by the client, to the existing interceptor chain.
clearInterceptors
public void clearInterceptors()
Removes all the interceptors added via addInterceptor(MBeanServerInterceptor interceptor)
.
isRunning
public boolean isRunning()
Returns whether this configurator is running and thus if the MBeanServer can accept incoming calls
registerInterceptor
public void registerInterceptor(MBeanServerInterceptor interceptor,
javax.management.ObjectName name)
throws javax.management.MBeanException
Appends the given interceptor, provided by the client, to the existing interceptor chain and registers it as MBean.
start
public void start()
Starts this configurator, so that the MBeanServer is now able to accept incoming calls.
stop
public void stop()
Stops this configurator, so that the MBeanServer is not able to accept incoming calls.
Copyright © 2001-2005 The MX4J Contributors. All Rights Reserved.