use of com.sun.messaging.jmq.Version in project openmq by eclipse-ee4j.
the class CommonCmdRunnerUtil method printBanner.
/**
* Print banner. XXX REVISIT 07/26/00 nakata: Add build number to M_BANNER
*/
public static void printBanner() {
Version version = new Version(false);
CommonGlobals.stdOutPrintln(version.getBanner(false));
}
use of com.sun.messaging.jmq.Version in project openmq by eclipse-ee4j.
the class CommonCmdRunnerUtil method printVersion.
public static void printVersion() {
Version version = new Version(false);
Globals.stdOutPrintln(version.getVersion());
Globals.stdOutPrintln(ar.getString(ar.I_JAVA_VERSION) + System.getProperty("java.version") + " " + System.getProperty("java.vendor") + " " + System.getProperty("java.home"));
}
use of com.sun.messaging.jmq.Version in project openmq by eclipse-ee4j.
the class BrokerMonitor method initProps.
private void initProps() {
brokerProps = Globals.getConfig().toProperties();
Version version = Globals.getVersion();
brokerProps.putAll(version.getProps());
}
use of com.sun.messaging.jmq.Version in project openmq by eclipse-ee4j.
the class LogConfig method initProps.
private void initProps() {
brokerProps = Globals.getConfig().toProperties();
Version version = Globals.getVersion();
brokerProps.putAll(version.getProps());
}
use of com.sun.messaging.jmq.Version in project openmq by eclipse-ee4j.
the class UserMgr method printBanner.
/**
* Print banner. XXX REVISIT 07/26/00 nakata: Add build number to M_BANNER
*/
private static void printBanner() {
Version version = new Version();
Output.stdOutPrintln(version.getBanner(false));
}
Aggregations