public final class ORBFactory
extends java.lang.Object
| Modifier and Type | Method and Description |
|---|---|
static org.omg.CORBA.ORB |
createORB(java.lang.String[] args,
java.util.Properties props)
Create and ORB and attach a logger instance to it.
|
static org.omg.CORBA.ORB |
createORB(java.lang.String[] args,
java.util.Properties props,
java.lang.String id)
Create and ORB and attach a logger instance to it.
|
static org.omg.CORBA.ORB |
createORB(java.lang.String[] args,
java.util.Properties props,
java.lang.String id,
java.lang.String prio)
Create and ORB and attach a logger instance to it.
|
static org.omg.CORBA.ORB |
createORB(java.lang.String[] args,
java.util.Properties props,
java.lang.String id,
java.lang.String prio,
java.lang.String fmt)
Create and ORB and attach a logger instance to it.
|
static org.omg.CORBA.ORB |
createORB(java.lang.String[] args,
java.util.Properties props,
java.lang.String id,
java.lang.String prio,
java.lang.String fmt,
java.io.OutputStream ostream)
The logger created by this factory method can be utilized with several parameters:
id or category name
priority string
log format string
alternative logging stream
If these parameters are omitted default values will be used.
|
public static org.omg.CORBA.ORB createORB(java.lang.String[] args,
java.util.Properties props)
args - The command line arguments to initialize the ORB with.props - The properties to initialize the ORB with.public static org.omg.CORBA.ORB createORB(java.lang.String[] args,
java.util.Properties props,
java.lang.String id)
args - The command line arguments to initialize the ORB with.props - The properties to initialize the ORB with.id - The ORB id which will be the logger's root category.public static org.omg.CORBA.ORB createORB(java.lang.String[] args,
java.util.Properties props,
java.lang.String id,
java.lang.String prio)
args - The command line arguments to initialize the ORB with.props - The properties to initialize the ORB with.id - The ORB id which will be the logger's root category.prio - The logging priority.public static org.omg.CORBA.ORB createORB(java.lang.String[] args,
java.util.Properties props,
java.lang.String id,
java.lang.String prio,
java.lang.String fmt)
args - The command line arguments to initialize the ORB with.props - The properties to initialize the ORB with.id - The ORB id which will be the logger's root category.prio - The logging priority.fmt - The logging format.public static org.omg.CORBA.ORB createORB(java.lang.String[] args,
java.util.Properties props,
java.lang.String id,
java.lang.String prio,
java.lang.String fmt,
java.io.OutputStream ostream)
args - The command line arguments to initialize the ORB with.props - The properties to initialize the ORB with.id - The ORB id which will be the logger's root category.prio - The logging priority.fmt - The logging format.ostream - The stream where to direct the logger output to.