Novell exteNd
Director 5.2 API

com.sssw.fw.log
Class EboLogFactory

java.lang.Object
 |
 +--com.sssw.fw.log.EboLogFactory

public class EboLogFactory
extends Object

This is the factory class for Framework Logging. It provides access into the logs by letting the API users obtain instances of configured logs.

To instantiate a configured log, call getLog( "logname" ), a static method of com.sssw.fw.log.EboFactory.

   com.sssw.fw.api.EbiLog myLog = EboFactory.getLog( "MyLogger" );

          myLog.trace( "some textual information" );
  

See Also:
EbiLog

Field Summary
static String AUDIT
          Identifies an Audit log
static String CACHE
          Identifies a cache log
static String CM
          Identifies a content management log
static String DIRECTORY
          Identifies a directory log
static String FW
          Identifies a framework log
static String PF
          Identifies a pageFlow log
static String PF_FORM
          Identifies a pageFlow Form log
static String PORTAL
          Identifies a portal log
static String PORTAL_PRESENTATION
          Identifies log specific to the portal presentation manager
static String PORTALPERSIST
          Identifies a portal persist log
static String PORTLET
          Identifies a portlet log
static String PORTLETCONTAINER
          Identifies a portlet container log
static String PORTLETPERSIST
          Identifies a portlet/wsrp persist log
static String PORTLETREGISTRY
          Identifies a portlet/portal registry log
static String PORTLETSESSION
          Identifies a portlet session log
static String RE
          Identifies a ruleEngine log
static String SAML
          Identifies a SAML log
static String SEARCH
          Identifies a search service log
static String SECURITY
          Identifies a security log
static String USER
          Identifies a user log
static String WEBDAV
          Identifies a webDav log
static String WF
          Identifies a workflow log
static String WSRPCONSUMER
          Identifies a WSRP consumer log
static String WSRPPRODUCER
          Identifies a WSRP producer log
static String WSRPREGISTRY
          Identifies a WSRP registry log
 
Constructor Summary
EboLogFactory()
           
 
Method Summary
static EbiLog getLog(String logName)
          Returns an EbiLog instance for the log specified.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

FW

public static String FW
Identifies a framework log

RE

public static String RE
Identifies a ruleEngine log

CM

public static String CM
Identifies a content management log

SEARCH

public static String SEARCH
Identifies a search service log

WF

public static String WF
Identifies a workflow log

PF

public static String PF
Identifies a pageFlow log

PF_FORM

public static String PF_FORM
Identifies a pageFlow Form log

PORTAL

public static String PORTAL
Identifies a portal log

PORTAL_PRESENTATION

public static String PORTAL_PRESENTATION
Identifies log specific to the portal presentation manager

WEBDAV

public static String WEBDAV
Identifies a webDav log

SECURITY

public static String SECURITY
Identifies a security log

USER

public static String USER
Identifies a user log

DIRECTORY

public static String DIRECTORY
Identifies a directory log

CACHE

public static String CACHE
Identifies a cache log

PORTLET

public static String PORTLET
Identifies a portlet log
Since:
v5.0

PORTLETCONTAINER

public static String PORTLETCONTAINER
Identifies a portlet container log
Since:
v5.0

PORTLETREGISTRY

public static String PORTLETREGISTRY
Identifies a portlet/portal registry log
Since:
v5.0

PORTLETPERSIST

public static String PORTLETPERSIST
Identifies a portlet/wsrp persist log
Since:
v5.0

PORTLETSESSION

public static String PORTLETSESSION
Identifies a portlet session log
Since:
v5.0

PORTALPERSIST

public static String PORTALPERSIST
Identifies a portal persist log
Since:
v5.0

WSRPCONSUMER

public static String WSRPCONSUMER
Identifies a WSRP consumer log
Since:
v5.0

WSRPPRODUCER

public static String WSRPPRODUCER
Identifies a WSRP producer log
Since:
v5.0

WSRPREGISTRY

public static String WSRPREGISTRY
Identifies a WSRP registry log
Since:
v5.0

SAML

public static String SAML
Identifies a SAML log
Since:
v5.0

AUDIT

public static String AUDIT
Identifies an Audit log
Since:
v5.0
Constructor Detail

EboLogFactory

public EboLogFactory()
Method Detail

getLog

public static EbiLog getLog(String logName)
Returns an EbiLog instance for the log specified.
Parameters:
Name - of the log to obtain an instance of.
Returns:
An instance of an EbiLog

Novell exteNd
Director 5.2 API