クラス org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient

org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClientに対する継承グラフ

Inheritance graph
[凡例]
org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClientのコラボレーション図

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

説明

This class is used to connect to the CjdbcJmxAgent and contains CJDBC information

作者:
Nicolas Modrzyk
バージョン:
1.0

VirtualDatabaseJmxClient.java44 行で定義されています。

Public メソッド

 VirtualDatabaseJmxClient (String name, String username, String password, String host, String port, Object credentials) throws JmxException, MBeanException
String[] getBackendInformation (String backendName) throws JmxException, MBeanException
boolean checkAdminAuthentication (String adminLogin, String adminPassword) throws JmxException, MBeanException
boolean hasRecoveryLog () throws JmxException, MBeanException
boolean isDistributed () throws JmxException, MBeanException
void disableBackend (String databaseBackendName) throws JmxException, MBeanException
void disableBackendForCheckpoint (String databaseBackendName, String checkpointName) throws JmxException, MBeanException
void enableBackend (String databaseBackendName) throws JmxException, MBeanException
void enableBackendFromCheckpoint (String databaseBackendName, String checkpointName) throws JmxException, MBeanException
ArrayList getAllBackendNames () throws JmxException, MBeanException
ArrayList getCheckpointNames () throws JmxException, MBeanException
String getName ()
void enableAllBackend () throws JmxException, MBeanException
void enableAllBackend (String checkpoint) throws JmxException, MBeanException
void disableAllBackend () throws JmxException, MBeanException
void disableAllBackendForCheckpoint (String checkpoint) throws JmxException, MBeanException
void backupBackendWithCheckpoint (String backendName, String checkpointName, ArrayList tables) throws JmxException, MBeanException
void removeCheckpoint (String checkpointName) throws JmxException, MBeanException
String getBackendState (String backendName) throws JmxException, MBeanException
void shutdown () throws JmxException, MBeanException
String getOwningController () throws JmxException, MBeanException
void restoreBackendFromBackupCheckpoint (String databaseBackendName, String checkpointName) throws JmxException, MBeanException
void replicateBackend (String backendName, String newBackendName, Map parameters) throws JmxException, MBeanException
String[] viewControllerList () throws JmxException, MBeanException

Private メソッド

void connect (String name, String username, String password) throws JmxException, MBeanException

Private 変数

String virtualDbName
String username
String password


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

org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.VirtualDatabaseJmxClient String  name,
String  username,
String  password,
String  host,
String  port,
Object  credentials
throws JmxException, MBeanException
 

Creates VirtualDatabaseManagement tool.

引数:
name of vitual database
username of admin
password of admin
host jmx host
port jmx port
credentials - jmx credentials
例外:
JmxException if fails to authenticate or to connect to MBean.
MBeanException if call fails on the jmx server
VirtualDatabaseJmxClient.java62 行で定義されています。

参照先 org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.connect(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.password, と org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.username.

00065 { 00066 super.connect(host, port, credentials); 00067 connect(name, username, password); 00068 }


メソッド

void org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.backupBackendWithCheckpoint String  backendName,
String  checkpointName,
ArrayList  tables
throws JmxException, MBeanException
 

参照:
org.objectweb.cjdbc.common.jmx.mbeans.VirtualDatabaseMBean.backupBackendWithCheckpoint
VirtualDatabaseJmxClient.java260 行で定義されています。

参照先 org.objectweb.cjdbc.console.jmx.JmxClient.invoke(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.password, と org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.username.

00263 { 00264 invoke("backupBackendWithCheckpoint", new Object[]{username, password, 00265 backendName, checkpointName, tables}, new String[]{"java.lang.String", 00266 "java.lang.String", "java.lang.String", "java.lang.String", 00267 "java.util.ArrayList"}); 00268 }

boolean org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.checkAdminAuthentication String  adminLogin,
String  adminPassword
throws JmxException, MBeanException
 

参照:
org.objectweb.cjdbc.common.jmx.mbeans.VirtualDatabaseMBean.checkAdminAuthentication(java.lang.String, java.lang.String)
VirtualDatabaseJmxClient.java109 行で定義されています。

参照先 org.objectweb.cjdbc.console.jmx.JmxClient.invoke().

参照元 org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.connect().

00111 { 00112 Object o = invoke("checkAdminAuthentication", new Object[]{adminLogin, 00113 adminPassword}, new String[]{"java.lang.String", "java.lang.String"}); 00114 return new Boolean(o.toString()).booleanValue(); 00115 }

void org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.connect String  name,
String  username,
String  password
throws JmxException, MBeanException [private]
 

Get connection to virtual database if authentication is valid

引数:
name the name of the virtual databases to administrate
username authentication of user name
password authentication of user password
例外:
JmxException if fails
MBeanException if call fails on the jmx server
VirtualDatabaseJmxClient.java79 行で定義されています。

参照先 org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.checkAdminAuthentication(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.password, と org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.username.

参照元 org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.VirtualDatabaseJmxClient().

00081 { 00082 mbean = JmxConstants.getVirtualDbObjectName(name); 00083 this.virtualDbName = name; 00084 this.username = username; 00085 this.password = password; 00086 boolean ok = checkAdminAuthentication(username, password); 00087 if (!ok) 00088 { 00089 mbean = null; 00090 throw new JmxException(ExceptionTypes.AUTHENTICATION_FAILED); 00091 } 00092 }

void org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.disableAllBackend  )  throws JmxException, MBeanException
 

参照:
org.objectweb.cjdbc.common.jmx.mbeans.VirtualDatabaseMBean.disableAllBackend()
VirtualDatabaseJmxClient.java240 行で定義されています。

参照先 org.objectweb.cjdbc.console.jmx.JmxClient.invoke(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.password, と org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.username.

00241 { 00242 invoke("disableAllBackend", new Object[]{username, password}, new String[]{ 00243 "java.lang.String", "java.lang.String"}); 00244 }

void org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.disableAllBackendForCheckpoint String  checkpoint  )  throws JmxException, MBeanException
 

参照:
org.objectweb.cjdbc.common.jmx.mbeans.VirtualDatabaseMBean.disableAllBackendForCheckpoint(java.lang.String)
VirtualDatabaseJmxClient.java249 行で定義されています。

参照先 org.objectweb.cjdbc.console.jmx.JmxClient.invoke(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.password, と org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.username.

00251 { 00252 invoke("disableAllBackendForCheckpoint", new Object[]{username, password, 00253 checkpoint}, new String[]{"java.lang.String", "java.lang.String", 00254 "java.lang.String"}); 00255 }

void org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.disableBackend String  databaseBackendName  )  throws JmxException, MBeanException
 

参照:
org.objectweb.cjdbc.common.jmx.mbeans.VirtualDatabaseMBean.disableBackend(java.lang.String)
VirtualDatabaseJmxClient.java140 行で定義されています。

参照先 org.objectweb.cjdbc.console.jmx.JmxClient.invoke(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.password, と org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.username.

00142 { 00143 invoke("disableBackend", new Object[]{username, password, 00144 databaseBackendName}, new String[]{"java.lang.String", 00145 "java.lang.String", "java.lang.String"}); 00146 }

void org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.disableBackendForCheckpoint String  databaseBackendName,
String  checkpointName
throws JmxException, MBeanException
 

参照:
org.objectweb.cjdbc.common.jmx.mbeans.VirtualDatabaseMBean.disableBackendForCheckpoint(java.lang.String, java.lang.String)
VirtualDatabaseJmxClient.java152 行で定義されています。

参照先 org.objectweb.cjdbc.console.jmx.JmxClient.invoke(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.password, と org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.username.

00154 { 00155 invoke("disableBackendForCheckpoint", new Object[]{username, password, 00156 databaseBackendName, checkpointName}, new String[]{"java.lang.String", 00157 "java.lang.String", "java.lang.String", "java.lang.String"}); 00158 }

void org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.enableAllBackend String  checkpoint  )  throws JmxException, MBeanException
 

参照:
org.objectweb.cjdbc.common.jmx.mbeans.VirtualDatabaseMBean.enableAllBackend(java.lang.String)
VirtualDatabaseJmxClient.java223 行で定義されています。

参照先 org.objectweb.cjdbc.console.jmx.JmxClient.invoke(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.password, と org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.username.

00225 { 00226 if (checkpoint == null) 00227 { 00228 this.enableAllBackend(); 00229 return; 00230 } 00231 invoke( 00232 "enableAllBackend", 00233 new Object[]{username, password, checkpoint}, 00234 new String[]{"java.lang.String", "java.lang.String", "java.lang.String"}); 00235 }

void org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.enableAllBackend  )  throws JmxException, MBeanException
 

参照:
org.objectweb.cjdbc.common.jmx.mbeans.VirtualDatabaseMBean.enableAllBackend()
VirtualDatabaseJmxClient.java214 行で定義されています。

参照先 org.objectweb.cjdbc.console.jmx.JmxClient.invoke(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.password, と org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.username.

00215 { 00216 invoke("enableAllBackend", new Object[]{username, password}, new String[]{ 00217 "java.lang.String", "java.lang.String"}); 00218 }

void org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.enableBackend String  databaseBackendName  )  throws JmxException, MBeanException
 

参照:
org.objectweb.cjdbc.common.jmx.mbeans.VirtualDatabaseMBean.enableBackend(java.lang.String)
VirtualDatabaseJmxClient.java163 行で定義されています。

参照先 org.objectweb.cjdbc.console.jmx.JmxClient.invoke(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.password, と org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.username.

00165 { 00166 invoke("enableBackend", new Object[]{username, password, 00167 databaseBackendName}, new String[]{"java.lang.String", 00168 "java.lang.String", "java.lang.String"}); 00169 }

void org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.enableBackendFromCheckpoint String  databaseBackendName,
String  checkpointName
throws JmxException, MBeanException
 

参照:
org.objectweb.cjdbc.common.jmx.mbeans.VirtualDatabaseMBean.enableBackendFromCheckpoint(java.lang.String, java.lang.String)
VirtualDatabaseJmxClient.java175 行で定義されています。

参照先 org.objectweb.cjdbc.console.jmx.JmxClient.invoke(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.password, と org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.username.

00177 { 00178 invoke("enableBackendFromCheckpoint", new Object[]{username, password, 00179 databaseBackendName, checkpointName}, new String[]{"java.lang.String", 00180 "java.lang.String", "java.lang.String", "java.lang.String"}); 00181 }

ArrayList org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.getAllBackendNames  )  throws JmxException, MBeanException
 

参照:
org.objectweb.cjdbc.common.jmx.mbeans.VirtualDatabaseMBean.viewAllBackendNames()
VirtualDatabaseJmxClient.java186 行で定義されています。

参照先 org.objectweb.cjdbc.console.jmx.JmxClient.invoke(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.password, と org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.username.

00187 { 00188 return (ArrayList) invoke("viewAllBackendNames", new Object[]{username, 00189 password}, new String[]{"java.lang.String", "java.lang.String"}); 00190 }

String [] org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.getBackendInformation String  backendName  )  throws JmxException, MBeanException
 

参照:
org.objectweb.cjdbc.common.jmx.mbeans.VirtualDatabaseMBean.viewBackendInformation(java.lang.String)
VirtualDatabaseJmxClient.java97 行で定義されています。

参照先 org.objectweb.cjdbc.console.jmx.JmxClient.invoke(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.password, と org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.username.

00099 { 00100 return (String[]) invoke("viewBackendInformation", new Object[]{username, 00101 password, backendName}, new String[]{"java.lang.String", 00102 "java.lang.String", "java.lang.String"}); 00103 }

String org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.getBackendState String  backendName  )  throws JmxException, MBeanException
 

参照:
org.objectweb.cjdbc.common.jmx.mbeans.VirtualDatabaseMBean.getBackendState(java.lang.String)
VirtualDatabaseJmxClient.java284 行で定義されています。

参照先 org.objectweb.cjdbc.console.jmx.JmxClient.invoke(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.password, と org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.username.

00286 { 00287 return (String) invoke("getBackendState", new Object[]{username, password, 00288 backendName}, new String[]{"java.lang.String", "java.lang.String", 00289 "java.lang.String"}); 00290 }

ArrayList org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.getCheckpointNames  )  throws JmxException, MBeanException
 

参照:
org.objectweb.cjdbc.common.jmx.mbeans.VirtualDatabaseMBean.viewAllBackendNames()
VirtualDatabaseJmxClient.java195 行で定義されています。

参照先 org.objectweb.cjdbc.console.jmx.JmxClient.invoke(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.password, と org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.username.

00196 { 00197 return (ArrayList) invoke("viewCheckpointNames", new Object[]{username, 00198 password}, new String[]{"java.lang.String", "java.lang.String"}); 00199 }

String org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.getName  ) 
 

参照:
org.objectweb.cjdbc.common.jmx.mbeans.VirtualDatabaseMBean.getName()
VirtualDatabaseJmxClient.java204 行で定義されています。

参照先 org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.virtualDbName.

00205 { 00206 if (JmxConstants.DEBUG) 00207 System.out.println("#DEBUG#getName for:" + virtualDbName); 00208 return virtualDbName; 00209 }

String org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.getOwningController  )  throws JmxException, MBeanException
 

参照:
org.objectweb.cjdbc.common.jmx.mbeans.VirtualDatabaseMBean.viewOwningController()
VirtualDatabaseJmxClient.java307 行で定義されています。

参照先 org.objectweb.cjdbc.console.jmx.JmxClient.invoke(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.password, と org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.username.

00308 { 00309 return (String) invoke("viewOwningController", new Object[]{username, 00310 password}, new String[]{"java.lang.String", "java.lang.String"}); 00311 }

boolean org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.hasRecoveryLog  )  throws JmxException, MBeanException
 

参照:
org.objectweb.cjdbc.common.jmx.mbeans.VirtualDatabaseMBean.hasRecoveryLog()
VirtualDatabaseJmxClient.java120 行で定義されています。

参照先 org.objectweb.cjdbc.console.jmx.JmxClient.invoke(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.password, と org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.username.

00121 { 00122 Object o = invoke("hasRecoveryLog", new Object[]{username, password}, 00123 new String[]{"java.lang.String", "java.lang.String"}); 00124 return new Boolean(o.toString()).booleanValue(); 00125 }

boolean org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.isDistributed  )  throws JmxException, MBeanException
 

参照:
org.objectweb.cjdbc.common.jmx.mbeans.VirtualDatabaseMBean.hasRecoveryLog()
VirtualDatabaseJmxClient.java130 行で定義されています。

参照先 org.objectweb.cjdbc.console.jmx.JmxClient.invoke(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.password, と org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.username.

00131 { 00132 Object o = invoke("isDistributed", new Object[]{username, password}, 00133 new String[]{"java.lang.String", "java.lang.String"}); 00134 return new Boolean(o.toString()).booleanValue(); 00135 }

void org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.removeCheckpoint String  checkpointName  )  throws JmxException, MBeanException
 

参照:
org.objectweb.cjdbc.common.jmx.mbeans.VirtualDatabaseMBean.removeCheckpoint
VirtualDatabaseJmxClient.java273 行で定義されています。

参照先 org.objectweb.cjdbc.console.jmx.JmxClient.invoke(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.password, と org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.username.

00275 { 00276 invoke("removeCheckpoint", 00277 new Object[]{username, password, checkpointName}, new String[]{ 00278 "java.lang.String", "java.lang.String", "java.lang.String"}); 00279 }

void org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.replicateBackend String  backendName,
String  newBackendName,
Map  parameters
throws JmxException, MBeanException
 

参照:
org.objectweb.cjdbc.common.jmx.mbeans.VirtualDatabaseMBean.replicateBackend
VirtualDatabaseJmxClient.java329 行で定義されています。

参照先 org.objectweb.cjdbc.console.jmx.JmxClient.invoke(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.password, と org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.username.

00331 { 00332 invoke("replicateBackend", new Object[]{username, password, backendName, 00333 newBackendName, parameters}, new String[]{"java.lang.String", 00334 "java.lang.String", "java.lang.String", "java.lang.String", 00335 "java.util.Map"}); 00336 }

void org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.restoreBackendFromBackupCheckpoint String  databaseBackendName,
String  checkpointName
throws JmxException, MBeanException
 

参照:
org.objectweb.cjdbc.common.jmx.mbeans.VirtualDatabaseMBean.restoreBackendFromBackupCheckpoint(java.lang.String, java.lang.String)
VirtualDatabaseJmxClient.java317 行で定義されています。

参照先 org.objectweb.cjdbc.console.jmx.JmxClient.invoke(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.password, と org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.username.

00319 { 00320 invoke("restoreBackendFromBackupCheckpoint", new Object[]{username, 00321 password, databaseBackendName, checkpointName}, new String[]{ 00322 "java.lang.String", "java.lang.String", "java.lang.String", 00323 "java.lang.String"}); 00324 }

void org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.shutdown  )  throws JmxException, MBeanException
 

Shutdown a virtual database in fast mode, disconnect clients

例外:
JmxException if jmx fails
MBeanException if the call fails on the controller
VirtualDatabaseJmxClient.java298 行で定義されています。

参照先 org.objectweb.cjdbc.console.jmx.JmxClient.invoke(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.password, と org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.username.

00299 { 00300 invoke("shutdown", new Object[]{username, password}, new String[]{ 00301 "java.lang.String", "java.lang.String"}); 00302 }

String [] org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.viewControllerList  )  throws JmxException, MBeanException
 

参照:
org.objectweb.cjdbc.common.jmx.mbeans.VirtualDatabaseMBean.viewControllerList()
VirtualDatabaseJmxClient.java341 行で定義されています。

参照先 org.objectweb.cjdbc.console.jmx.JmxClient.invoke(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.password, と org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.username.

00342 { 00343 return (String[]) invoke("viewControllerList", new Object[]{username, 00344 password}, new String[]{"java.lang.String", "java.lang.String"}); 00345 }


変数

String org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.password [private]
 

VirtualDatabaseJmxClient.java48 行で定義されています。

参照元 org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.backupBackendWithCheckpoint(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.connect(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.disableAllBackend(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.disableAllBackendForCheckpoint(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.disableBackend(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.disableBackendForCheckpoint(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.enableAllBackend(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.enableBackend(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.enableBackendFromCheckpoint(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.getAllBackendNames(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.getBackendInformation(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.getBackendState(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.getCheckpointNames(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.getOwningController(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.hasRecoveryLog(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.isDistributed(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.removeCheckpoint(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.replicateBackend(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.restoreBackendFromBackupCheckpoint(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.shutdown(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.viewControllerList(), と org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.VirtualDatabaseJmxClient().

String org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.username [private]
 

VirtualDatabaseJmxClient.java47 行で定義されています。

参照元 org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.backupBackendWithCheckpoint(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.connect(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.disableAllBackend(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.disableAllBackendForCheckpoint(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.disableBackend(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.disableBackendForCheckpoint(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.enableAllBackend(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.enableBackend(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.enableBackendFromCheckpoint(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.getAllBackendNames(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.getBackendInformation(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.getBackendState(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.getCheckpointNames(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.getOwningController(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.hasRecoveryLog(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.isDistributed(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.removeCheckpoint(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.replicateBackend(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.restoreBackendFromBackupCheckpoint(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.shutdown(), org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.viewControllerList(), と org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.VirtualDatabaseJmxClient().

String org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.virtualDbName [private]
 

VirtualDatabaseJmxClient.java46 行で定義されています。

参照元 org.objectweb.cjdbc.console.jmx.VirtualDatabaseJmxClient.getName().


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