Methods Summary |
---|
public java.lang.String[] | getCmdLineArgs()Get the server command-line arguments
return ctx.getCmdLineArgs();
|
public javax.naming.InitialContext | getInitialContext()Get the initial naming context.
return ctx.getInitialContext();
|
public java.lang.String | getInstallRoot()Get server installation root
return ctx.getInstallRoot();
|
public java.lang.String | getInstanceName()Get the server instance name
return ctx.getInstanceName();
|
public void | log(java.lang.String message)Writes the specified message to a server log file.
logger.info(message);
|
public void | log(java.lang.String message, java.lang.Throwable throwable)Writes an explanatory message and a stack trace
for a given Throwable exception
to the server log file.
logger.log(Level.INFO, message, throwable);
|