src/org/objectweb/cjdbc/console/text/commands/controller/Bind.java

説明を見る。
00001 00025 package org.objectweb.cjdbc.console.text.commands.controller; 00026 00027 import org.objectweb.cjdbc.common.i18n.ConsoleTranslate; 00028 import org.objectweb.cjdbc.console.text.ConsoleException; 00029 import org.objectweb.cjdbc.console.text.commands.ConsoleCommand; 00030 import org.objectweb.cjdbc.console.text.module.AbstractConsoleModule; 00031 00038 public class Bind extends ConsoleCommand 00039 { 00040 00046 public Bind(AbstractConsoleModule module) 00047 { 00048 super(module); 00049 } 00050 00054 public void parse(String commandText) throws Exception 00055 { 00056 String thost = null; 00057 try 00058 { 00059 thost = console.readLine(ConsoleTranslate 00060 .get("controller.command.bind.input.hostname")); 00061 if (thost == null) 00062 return; 00063 00064 String port = console.readLine(ConsoleTranslate 00065 .get("controller.command.bind.input.jmxport")); 00066 if (port == null) 00067 return; 00068 jmxClient.connect(port,thost, jmxClient.getCredentials()); 00069 console.println(ConsoleTranslate.get("controller.command.bind.success", 00070 thost)); 00071 } 00072 catch (Exception e) 00073 { 00074 throw new ConsoleException(ConsoleTranslate.get( 00075 "controller.command.bind.failed", thost)); 00076 } 00077 } 00078 00082 public String getCommandName() 00083 { 00084 return "bind"; 00085 } 00086 00090 public String getCommandDescription() 00091 { 00092 return ConsoleTranslate.get("controller.command.bind"); 00093 } 00094 00095 }

CJDBCversion1.0.4に対してTue Oct 12 15:15:59 2004に生成されました。 doxygen 1.3.8