use of com.sun.messaging.jmq.Version in project openmq by eclipse-ee4j.
the class DestinationManagerConfig 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 ClusterConfig 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 printVersion.
private static void printVersion() {
Version version = new Version();
Output.stdOutPrintln(version.getVersion());
Output.stdOutPrintln(br.getString(br.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 ObjMgr method printBanner.
/*
* private static void previewCommands(ObjMgrProperties objMgrProps) { Globals.stdOutPrintln("Preview mode", true); }
*/
/**
* Print banner. XXX REVISIT 07/26/00 nakata: Add build number to M_BANNER
*/
private static void printBanner() {
Version version = new Version(false);
Globals.stdOutPrintln(version.getBanner(false));
}
use of com.sun.messaging.jmq.Version in project openmq by eclipse-ee4j.
the class ObjMgr method printVersion.
private 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"));
Globals.stdOutPrintln(ar.getString(ar.I_JAVA_CLASSPATH) + System.getProperty("java.class.path"));
}
Aggregations