クラス org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer

org.objectweb.cjdbc.controller.jmx.ChainedMBeanServerに対する継承グラフ

Inheritance graph
[凡例]
すべてのメンバ一覧

説明

Base class for chained MBeanServers. By default this class delegates all method calls to the nested MBeanServer. Subclass it to add behavior to one or more (or all) methods.

This class takes its origin in mx4j.server.ChainedMBeanServer

作者:
Marc Wick
バージョン:
1.0

ChainedMBeanServer.java62 行で定義されています。

Public メソッド

 ChainedMBeanServer ()
 ChainedMBeanServer (MBeanServer server)
void addNotificationListener (ObjectName observed, NotificationListener listener, NotificationFilter filter, Object handback) throws InstanceNotFoundException
void addNotificationListener (ObjectName observed, ObjectName listener, NotificationFilter filter, Object handback) throws InstanceNotFoundException
ObjectInstance createMBean (String className, ObjectName objectName) throws ReflectionException, InstanceAlreadyExistsException, MBeanRegistrationException, MBeanException, NotCompliantMBeanException
ObjectInstance createMBean (String className, ObjectName objectName, Object[] args, String[] parameters) throws ReflectionException, InstanceAlreadyExistsException, MBeanRegistrationException, MBeanException, NotCompliantMBeanException
ObjectInstance createMBean (String className, ObjectName objectName, ObjectName loaderName) throws ReflectionException, InstanceAlreadyExistsException, MBeanRegistrationException, MBeanException, NotCompliantMBeanException, InstanceNotFoundException
ObjectInstance createMBean (String className, ObjectName objectName, ObjectName loaderName, Object[] args, String[] parameters) throws ReflectionException, InstanceAlreadyExistsException, MBeanRegistrationException, MBeanException, NotCompliantMBeanException, InstanceNotFoundException
ObjectInputStream deserialize (String className, byte[] bytes) throws OperationsException, ReflectionException
ObjectInputStream deserialize (String className, ObjectName loaderName, byte[] bytes) throws InstanceNotFoundException, OperationsException, ReflectionException
ObjectInputStream deserialize (ObjectName objectName, byte[] bytes) throws InstanceNotFoundException, OperationsException
Object getAttribute (ObjectName objectName, String attribute) throws MBeanException, AttributeNotFoundException, InstanceNotFoundException, ReflectionException
AttributeList getAttributes (ObjectName objectName, String[] attributes) throws InstanceNotFoundException, ReflectionException
String getDefaultDomain ()
String[] getDomains ()
Integer getMBeanCount ()
MBeanInfo getMBeanInfo (ObjectName objectName) throws InstanceNotFoundException, IntrospectionException, ReflectionException
ObjectInstance getObjectInstance (ObjectName objectName) throws InstanceNotFoundException
Object instantiate (String className) throws ReflectionException, MBeanException
Object instantiate (String className, Object[] args, String[] parameters) throws ReflectionException, MBeanException
Object instantiate (String className, ObjectName loaderName) throws ReflectionException, MBeanException, InstanceNotFoundException
Object instantiate (String className, ObjectName loaderName, Object[] args, String[] parameters) throws ReflectionException, MBeanException, InstanceNotFoundException
Object invoke (ObjectName objectName, String methodName, Object[] args, String[] parameters) throws InstanceNotFoundException, MBeanException, ReflectionException
boolean isInstanceOf (ObjectName objectName, String className) throws InstanceNotFoundException
boolean isRegistered (ObjectName objectname)
Set queryMBeans (ObjectName patternName, QueryExp filter)
Set queryNames (ObjectName patternName, QueryExp filter)
ObjectInstance registerMBean (Object mbean, ObjectName objectName) throws InstanceAlreadyExistsException, MBeanRegistrationException, NotCompliantMBeanException
void removeNotificationListener (ObjectName observed, NotificationListener listener) throws InstanceNotFoundException, ListenerNotFoundException
void removeNotificationListener (ObjectName observed, ObjectName listener) throws InstanceNotFoundException, ListenerNotFoundException
void removeNotificationListener (ObjectName observed, ObjectName listener, NotificationFilter filter, Object handback) throws InstanceNotFoundException, ListenerNotFoundException
void removeNotificationListener (ObjectName observed, NotificationListener listener, NotificationFilter filter, Object handback) throws InstanceNotFoundException, ListenerNotFoundException
void setAttribute (ObjectName objectName, Attribute attribute) throws InstanceNotFoundException, AttributeNotFoundException, InvalidAttributeValueException, MBeanException, ReflectionException
AttributeList setAttributes (ObjectName objectName, AttributeList attributes) throws InstanceNotFoundException, ReflectionException
void unregisterMBean (ObjectName objectName) throws InstanceNotFoundException, MBeanRegistrationException
ClassLoader getClassLoaderFor (ObjectName mbeanName) throws InstanceNotFoundException
ClassLoader getClassLoader (ObjectName loaderName) throws InstanceNotFoundException
ClassLoaderRepository getClassLoaderRepository ()

Protected メソッド

synchronized MBeanServer getMBeanServer ()
synchronized void setMBeanServer (MBeanServer server)

Private 変数

MBeanServer mbServer


コンストラクタとデストラクタ

org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.ChainedMBeanServer  ) 
 

Creates a new ChainedMBeanServer that will delegate to an MBeanServer specified using setMBeanServer ChainedMBeanServer.java71 行で定義されています。

00072 { 00073 this(null); 00074 }

org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.ChainedMBeanServer MBeanServer  server  ) 
 

Creates a new ChainedMBeanServer that delegates to the specified MBeanServer.

引数:
server MBeanServer
ChainedMBeanServer.java82 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.setMBeanServer().

00083 { 00084 setMBeanServer(server); 00085 }


メソッド

void org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.addNotificationListener ObjectName  observed,
ObjectName  listener,
NotificationFilter  filter,
Object  handback
throws InstanceNotFoundException
 

参照:
javax.management.MBeanServerConnection#addNotificationListener(javax.management.ObjectName, javax.management.ObjectName, javax.management.NotificationFilter, java.lang.Object)
ChainedMBeanServer.java118 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00121 { 00122 getMBeanServer().addNotificationListener(observed, listener, filter, 00123 handback); 00124 }

void org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.addNotificationListener ObjectName  observed,
NotificationListener  listener,
NotificationFilter  filter,
Object  handback
throws InstanceNotFoundException
 

参照:
javax.management.MBeanServerConnection#addNotificationListener(javax.management.ObjectName, javax.management.NotificationListener, javax.management.NotificationFilter, java.lang.Object)
ChainedMBeanServer.java105 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00108 { 00109 getMBeanServer().addNotificationListener(observed, listener, filter, 00110 handback); 00111 }

ObjectInstance org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.createMBean String  className,
ObjectName  objectName,
ObjectName  loaderName,
Object[]  args,
String[]  parameters
throws ReflectionException, InstanceAlreadyExistsException, MBeanRegistrationException, MBeanException, NotCompliantMBeanException, InstanceNotFoundException
 

参照:
javax.management.MBeanServerConnection#createMBean(java.lang.String, javax.management.ObjectName, javax.management.ObjectName, java.lang.Object[], java.lang.String[])
ChainedMBeanServer.java167 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00172 { 00173 return getMBeanServer().createMBean(className, objectName, loaderName, 00174 args, parameters); 00175 }

ObjectInstance org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.createMBean String  className,
ObjectName  objectName,
ObjectName  loaderName
throws ReflectionException, InstanceAlreadyExistsException, MBeanRegistrationException, MBeanException, NotCompliantMBeanException, InstanceNotFoundException
 

参照:
javax.management.MBeanServerConnection#createMBean(java.lang.String, javax.management.ObjectName, javax.management.ObjectName)
ChainedMBeanServer.java154 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00158 { 00159 return getMBeanServer().createMBean(className, objectName, loaderName); 00160 }

ObjectInstance org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.createMBean String  className,
ObjectName  objectName,
Object[]  args,
String[]  parameters
throws ReflectionException, InstanceAlreadyExistsException, MBeanRegistrationException, MBeanException, NotCompliantMBeanException
 

参照:
javax.management.MBeanServerConnection#createMBean(java.lang.String, javax.management.ObjectName, java.lang.Object[], java.lang.String[])
ChainedMBeanServer.java141 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00145 { 00146 return getMBeanServer() 00147 .createMBean(className, objectName, args, parameters); 00148 }

ObjectInstance org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.createMBean String  className,
ObjectName  objectName
throws ReflectionException, InstanceAlreadyExistsException, MBeanRegistrationException, MBeanException, NotCompliantMBeanException
 

参照:
javax.management.MBeanServerConnection#createMBean(java.lang.String, javax.management.ObjectName)
ChainedMBeanServer.java130 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00133 { 00134 return getMBeanServer().createMBean(className, objectName); 00135 }

ObjectInputStream org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.deserialize ObjectName  objectName,
byte[]  bytes
throws InstanceNotFoundException, OperationsException
 

参照:
javax.management.MBeanServer#deserialize(javax.management.ObjectName, byte[])
ChainedMBeanServer.java201 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00203 { 00204 return getMBeanServer().deserialize(objectName, bytes); 00205 }

ObjectInputStream org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.deserialize String  className,
ObjectName  loaderName,
byte[]  bytes
throws InstanceNotFoundException, OperationsException, ReflectionException
 

参照:
javax.management.MBeanServer#deserialize(java.lang.String, javax.management.ObjectName, byte[])
ChainedMBeanServer.java190 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00193 { 00194 return getMBeanServer().deserialize(className, loaderName, bytes); 00195 }

ObjectInputStream org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.deserialize String  className,
byte[]  bytes
throws OperationsException, ReflectionException
 

参照:
javax.management.MBeanServer#deserialize(java.lang.String, byte[])
ChainedMBeanServer.java180 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00182 { 00183 return getMBeanServer().deserialize(className, bytes); 00184 }

Object org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getAttribute ObjectName  objectName,
String  attribute
throws MBeanException, AttributeNotFoundException, InstanceNotFoundException, ReflectionException
 

参照:
javax.management.MBeanServerConnection#getAttribute(javax.management.ObjectName, java.lang.String)
ChainedMBeanServer.java211 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00214 { 00215 return getMBeanServer().getAttribute(objectName, attribute); 00216 }

AttributeList org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getAttributes ObjectName  objectName,
String[]  attributes
throws InstanceNotFoundException, ReflectionException
 

参照:
javax.management.MBeanServerConnection#getAttributes(javax.management.ObjectName, java.lang.String[])
ChainedMBeanServer.java222 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00224 { 00225 return getMBeanServer().getAttributes(objectName, attributes); 00226 }

ClassLoader org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getClassLoader ObjectName  loaderName  )  throws InstanceNotFoundException
 

参照:
javax.management.MBeanServer#getClassLoader(javax.management.ObjectName)
ChainedMBeanServer.java461 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00463 { 00464 return getMBeanServer().getClassLoader(loaderName); 00465 }

ClassLoader org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getClassLoaderFor ObjectName  mbeanName  )  throws InstanceNotFoundException
 

参照:
javax.management.MBeanServer#getClassLoaderFor(javax.management.ObjectName)
ChainedMBeanServer.java452 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00454 { 00455 return getMBeanServer().getClassLoaderFor(mbeanName); 00456 }

ClassLoaderRepository org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getClassLoaderRepository  ) 
 

参照:
javax.management.MBeanServer#getClassLoaderRepository()
ChainedMBeanServer.java470 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00471 { 00472 return getMBeanServer().getClassLoaderRepository(); 00473 }

String org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getDefaultDomain  ) 
 

参照:
javax.management.MBeanServerConnection#getDefaultDomain()
ChainedMBeanServer.java231 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00232 { 00233 return getMBeanServer().getDefaultDomain(); 00234 }

String [] org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getDomains  ) 
 

参照:
javax.management.MBeanServerConnection#getDomains()
ChainedMBeanServer.java239 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00240 { 00241 return getMBeanServer().getDomains(); 00242 }

Integer org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanCount  ) 
 

参照:
javax.management.MBeanServerConnection#getMBeanCount()
ChainedMBeanServer.java247 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00248 { 00249 return getMBeanServer().getMBeanCount(); 00250 }

MBeanInfo org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanInfo ObjectName  objectName  )  throws InstanceNotFoundException, IntrospectionException, ReflectionException
 

参照:
javax.management.MBeanServerConnection#getMBeanInfo(javax.management.ObjectName)
ChainedMBeanServer.java255 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00258 { 00259 return getMBeanServer().getMBeanInfo(objectName); 00260 }

synchronized MBeanServer org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer  )  [protected]
 

Returns the nested MBeanServer ChainedMBeanServer.java90 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.mbServer.

参照元 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.addNotificationListener(), org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.createMBean(), org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.deserialize(), org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getAttribute(), org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getAttributes(), org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getClassLoader(), org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getClassLoaderFor(), org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getClassLoaderRepository(), org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getDefaultDomain(), org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getDomains(), org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanCount(), org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanInfo(), org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getObjectInstance(), org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.instantiate(), org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.invoke(), org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.isInstanceOf(), org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.isRegistered(), org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.queryMBeans(), org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.queryNames(), org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.registerMBean(), org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.removeNotificationListener(), org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.setAttribute(), org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.setAttributes(), と org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.unregisterMBean().

00091 { 00092 return mbServer; 00093 }

ObjectInstance org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getObjectInstance ObjectName  objectName  )  throws InstanceNotFoundException
 

参照:
javax.management.MBeanServerConnection#getObjectInstance(javax.management.ObjectName)
ChainedMBeanServer.java265 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00267 { 00268 return getMBeanServer().getObjectInstance(objectName); 00269 }

Object org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.instantiate String  className,
ObjectName  loaderName,
Object[]  args,
String[]  parameters
throws ReflectionException, MBeanException, InstanceNotFoundException
 

参照:
javax.management.MBeanServer#instantiate(java.lang.String, javax.management.ObjectName, java.lang.Object[], java.lang.String[])
ChainedMBeanServer.java304 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00307 { 00308 return getMBeanServer() 00309 .instantiate(className, loaderName, args, parameters); 00310 }

Object org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.instantiate String  className,
ObjectName  loaderName
throws ReflectionException, MBeanException, InstanceNotFoundException
 

参照:
javax.management.MBeanServer#instantiate(java.lang.String, javax.management.ObjectName)
ChainedMBeanServer.java294 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00296 { 00297 return getMBeanServer().instantiate(className, loaderName); 00298 }

Object org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.instantiate String  className,
Object[]  args,
String[]  parameters
throws ReflectionException, MBeanException
 

参照:
javax.management.MBeanServer#instantiate(java.lang.String, java.lang.Object[], java.lang.String[])
ChainedMBeanServer.java284 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00286 { 00287 return getMBeanServer().instantiate(className, args, parameters); 00288 }

Object org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.instantiate String  className  )  throws ReflectionException, MBeanException
 

参照:
javax.management.MBeanServer#instantiate(java.lang.String)
ChainedMBeanServer.java274 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00276 { 00277 return getMBeanServer().instantiate(className); 00278 }

Object org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.invoke ObjectName  objectName,
String  methodName,
Object[]  args,
String[]  parameters
throws InstanceNotFoundException, MBeanException, ReflectionException
 

参照:
javax.management.MBeanServerConnection#invoke(javax.management.ObjectName, java.lang.String, java.lang.Object[], java.lang.String[])

org.objectweb.cjdbc.controller.jmx.AuthenticatingMBeanServerで再定義されています。

ChainedMBeanServer.java316 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00319 { 00320 return getMBeanServer().invoke(objectName, methodName, args, parameters); 00321 }

boolean org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.isInstanceOf ObjectName  objectName,
String  className
throws InstanceNotFoundException
 

参照:
javax.management.MBeanServerConnection#isInstanceOf(javax.management.ObjectName, java.lang.String)
ChainedMBeanServer.java327 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00329 { 00330 return getMBeanServer().isInstanceOf(objectName, className); 00331 }

boolean org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.isRegistered ObjectName  objectname  ) 
 

参照:
javax.management.MBeanServerConnection#isRegistered(javax.management.ObjectName)
ChainedMBeanServer.java336 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00337 { 00338 return getMBeanServer().isRegistered(objectname); 00339 }

Set org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.queryMBeans ObjectName  patternName,
QueryExp  filter
 

参照:
javax.management.MBeanServerConnection#queryMBeans(javax.management.ObjectName, javax.management.QueryExp)
ChainedMBeanServer.java345 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00346 { 00347 return getMBeanServer().queryMBeans(patternName, filter); 00348 }

Set org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.queryNames ObjectName  patternName,
QueryExp  filter
 

参照:
javax.management.MBeanServerConnection#queryNames(javax.management.ObjectName, javax.management.QueryExp)
ChainedMBeanServer.java354 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00355 { 00356 return getMBeanServer().queryNames(patternName, filter); 00357 }

ObjectInstance org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.registerMBean Object  mbean,
ObjectName  objectName
throws InstanceAlreadyExistsException, MBeanRegistrationException, NotCompliantMBeanException
 

参照:
javax.management.MBeanServer#registerMBean(java.lang.Object, javax.management.ObjectName)
ChainedMBeanServer.java363 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00366 { 00367 return getMBeanServer().registerMBean(mbean, objectName); 00368 }

void org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.removeNotificationListener ObjectName  observed,
NotificationListener  listener,
NotificationFilter  filter,
Object  handback
throws InstanceNotFoundException, ListenerNotFoundException
 

参照:
javax.management.MBeanServerConnection#removeNotificationListener(javax.management.ObjectName, javax.management.NotificationListener, javax.management.NotificationFilter, java.lang.Object)
ChainedMBeanServer.java410 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00413 { 00414 getMBeanServer().removeNotificationListener(observed, listener, filter, 00415 handback); 00416 }

void org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.removeNotificationListener ObjectName  observed,
ObjectName  listener,
NotificationFilter  filter,
Object  handback
throws InstanceNotFoundException, ListenerNotFoundException
 

参照:
javax.management.MBeanServerConnection#removeNotificationListener(javax.management.ObjectName, javax.management.ObjectName, javax.management.NotificationFilter, java.lang.Object)
ChainedMBeanServer.java397 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00400 { 00401 getMBeanServer().removeNotificationListener(observed, listener, filter, 00402 handback); 00403 }

void org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.removeNotificationListener ObjectName  observed,
ObjectName  listener
throws InstanceNotFoundException, ListenerNotFoundException
 

参照:
javax.management.MBeanServerConnection#removeNotificationListener(javax.management.ObjectName, javax.management.ObjectName)
ChainedMBeanServer.java385 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00388 { 00389 getMBeanServer().removeNotificationListener(observed, listener); 00390 }

void org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.removeNotificationListener ObjectName  observed,
NotificationListener  listener
throws InstanceNotFoundException, ListenerNotFoundException
 

参照:
javax.management.MBeanServerConnection#removeNotificationListener(javax.management.ObjectName, javax.management.NotificationListener)
ChainedMBeanServer.java374 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00377 { 00378 getMBeanServer().removeNotificationListener(observed, listener); 00379 }

void org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.setAttribute ObjectName  objectName,
Attribute  attribute
throws InstanceNotFoundException, AttributeNotFoundException, InvalidAttributeValueException, MBeanException, ReflectionException
 

参照:
javax.management.MBeanServerConnection#setAttribute(javax.management.ObjectName, javax.management.Attribute)
ChainedMBeanServer.java422 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00425 { 00426 getMBeanServer().setAttribute(objectName, attribute); 00427 }

AttributeList org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.setAttributes ObjectName  objectName,
AttributeList  attributes
throws InstanceNotFoundException, ReflectionException
 

参照:
javax.management.MBeanServerConnection#setAttributes(javax.management.ObjectName, javax.management.AttributeList)
ChainedMBeanServer.java433 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00436 { 00437 return getMBeanServer().setAttributes(objectName, attributes); 00438 }

synchronized void org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.setMBeanServer MBeanServer  server  )  [protected]
 

org.objectweb.cjdbc.controller.jmx.AuthenticatingMBeanServerで再定義されています。

ChainedMBeanServer.java95 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.mbServer.

参照元 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.ChainedMBeanServer().

00096 { 00097 mbServer = server; 00098 }

void org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.unregisterMBean ObjectName  objectName  )  throws InstanceNotFoundException, MBeanRegistrationException
 

参照:
javax.management.MBeanServerConnection#unregisterMBean(javax.management.ObjectName)
ChainedMBeanServer.java443 行で定義されています。

参照先 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer().

00445 { 00446 getMBeanServer().unregisterMBean(objectName); 00447 }


変数

MBeanServer org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.mbServer [private]
 

ChainedMBeanServer.java65 行で定義されています。

参照元 org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.getMBeanServer(), と org.objectweb.cjdbc.controller.jmx.ChainedMBeanServer.setMBeanServer().


このクラスの説明は次のファイルから生成されました:
CJDBCversion1.0.4に対してTue Oct 12 15:16:42 2004に生成されました。 doxygen 1.3.8