| java.lang.Object com.sun.ssoadapter.SSOAdapterLogger
SSOAdapterLogger | public class SSOAdapterLogger (Code) | | It uses Portal Logger if available else Java Logger
|
Method Summary | |
public static Logger | getLogger(String name) Returns the Logger for the specified name.
This checks whether PortalLogger is in the same JVM.
If its present, invokes getLogger method of the PortalLogger to get the Logger.
If its not present, invokes the getLogger method of the JDK Logger to get the Logger
by passing SSOAdapterLogMessages resource bundle.
SSOAdapterLogMessages.properties is the concatenation of all logmsg.properties
in the ssoadapter module. | public static Logger | getLogger(Class cls) Returns the Logger for the class object. |
getLogger | public static Logger getLogger(String name)(Code) | | Returns the Logger for the specified name.
This checks whether PortalLogger is in the same JVM.
If its present, invokes getLogger method of the PortalLogger to get the Logger.
If its not present, invokes the getLogger method of the JDK Logger to get the Logger
by passing SSOAdapterLogMessages resource bundle.
SSOAdapterLogMessages.properties is the concatenation of all logmsg.properties
in the ssoadapter module.
Parameters: name - the name of the logger the Logger |
getLogger | public static Logger getLogger(Class cls)(Code) | | Returns the Logger for the class object.
Derives the package name from the class object and uses it
to create the Logger.
Parameters: cls - a class object the Logger |
|
|