public class Manager
extends java.lang.Object
Constructor and Description |
---|
Manager()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
addLoggerToGroup(RASTraceLogger logger,
java.lang.String groupName)
Deprecated.
Add a RASTraceLogger to a Group.
|
RASMessageLogger |
createRASMessageLogger(java.lang.String component,
java.lang.String name)
Deprecated.
FOR IBM INTERNAL USE ONLY
Retrieve the specified RASMessageLogger, creating it if it doesn't already exist.
|
RASMessageLogger |
createRASMessageLogger(java.lang.String organization,
java.lang.String product,
java.lang.String component,
java.lang.String name)
Deprecated.
Retrieve the specified RASMessageLogger, creating it if it doesn't already exist.
|
RASTraceLogger |
createRASTraceLogger(java.lang.String component,
java.lang.String name)
Deprecated.
FOR IBM INTERNAL USE ONLY
Retrieve the specified RASTraceLogger, creating it if it doesn't already exist.
|
RASTraceLogger |
createRASTraceLogger(java.lang.String organization,
java.lang.String product,
java.lang.String component,
java.lang.String name)
Deprecated.
Retrieve the specified RASTraceLogger, creating it if it doesn't already exist.
|
static Manager |
getManager()
Deprecated.
Return a reference to the singleton ManagerImpl instance for this process.
|
public Manager()
public static Manager getManager()
public RASMessageLogger createRASMessageLogger(java.lang.String organization, java.lang.String product, java.lang.String component, java.lang.String name) throws java.lang.IllegalArgumentException
organization
- The name of the organization. May not be null or empty String.product
- The name of the product. May not be null or empty String.component
- The name of the component. May not be null or empty String.name
- The name of the logger. May not be null or empty String.java.lang.IllegalArgumentException
- A passed String is either null or an empty string.public RASMessageLogger createRASMessageLogger(java.lang.String component, java.lang.String name) throws java.lang.IllegalArgumentException
component
- The name of the component. May not be null or empty String.name
- The name of the logger. May not be null or empty String.java.lang.IllegalArgumentException
- A passed String is either null or an empty string.public RASTraceLogger createRASTraceLogger(java.lang.String organization, java.lang.String product, java.lang.String component, java.lang.String name) throws java.lang.IllegalArgumentException
organization
- The name of the organization. May not be null or empty String.product
- The name of the product. May not be null or empty String.component
- The name of the component. May not be null or empty String.name
- The name of the logger. May not be null or empty String.java.lang.IllegalArgumentException
- A passed String is either null or an empty string.public RASTraceLogger createRASTraceLogger(java.lang.String component, java.lang.String name) throws java.lang.IllegalArgumentException
component
- The name of the component. May not be null or empty String.name
- The name of the logger. May not be null or empty String.java.lang.IllegalArgumentException
- A passed String is either null or an empty string.public void addLoggerToGroup(RASTraceLogger logger, java.lang.String groupName) throws java.lang.IllegalArgumentException
logger
- A reference to the RASTraceLogger to add to the group. May not be null. The RASTraceLogger
must have been obtained from this Manager.groupName
- The name of the group. May not be null or empty Stringjava.lang.IllegalArgumentException
- The specified logger is null or not a Logger. The
specified group is null or an empty String.