Skip navigation links

Oracle TopLink Java API Reference
10g Release 3 (10.1.3.1)

B28219-01


oracle.toplink.sessions
Class SessionLogEntry

java.lang.Object
  extended byoracle.toplink.sessions.SessionLogEntry

All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
SessionLogEntry

Deprecated. Please use oracle.toplink.logging.SessionLogEntry

public class SessionLogEntry
extends java.lang.Object
implements java.io.Serializable

SessionLogEntry is a simple container object that holds all the information pertinent to a TopLink logging event. It has a date/time stamp indicating when the event took place. It holds the session, thread, and accessor responsible for the event. And it holds whatever message was passed through to be logged.

Since:
TOPLink/Java 3.0
See Also:
SessionLog, DefaultSessionLog, Serialized Form

Constructor Summary
SessionLogEntry(int level, Session session, java.lang.String message, java.lang.Object[] params, Accessor connection, boolean shouldTranslate)
          Deprecated. PUBLIC: Create a new session log entry for a request level, a session, a message and an accessor
SessionLogEntry(int level, java.lang.String category, Session session, java.lang.String message, java.lang.Object[] params, Accessor connection, boolean shouldTranslate)
          Deprecated. PUBLIC: Create a new session log entry for a request level, a session, a message and an accessor
SessionLogEntry(Session session)
          Deprecated. PUBLIC: Create a new session log entry for a session
SessionLogEntry(Session session, int level, java.lang.String category, java.lang.Throwable throwable)
          Deprecated. PUBLIC: Create a new session log entry for a session, a level, a category and an exception
SessionLogEntry(Session session, java.lang.String message)
          Deprecated. PUBLIC: Create a new session log entry for a session and a message
SessionLogEntry(Session session, java.lang.String message, Accessor connection)
          Deprecated. PUBLIC: Create a new session log entry for a session, a message and an accessor
SessionLogEntry(Session session, java.lang.String message, boolean isDebug, Accessor connection)
          Deprecated. replaced by SessionLogEntry(int level, Session session, String message, Object[] params, Accessor connection, boolean shouldTranslate)
SessionLogEntry(Session session, java.lang.Throwable throwable)
          Deprecated. PUBLIC: Create a new session log entry for a session and an exception

 

Method Summary
 Accessor getConnection()
          Deprecated. PUBLIC: Return the connection that generated the log entry.
 java.util.Date getDate()
          Deprecated. PUBLIC: Return the date of the log entry.
 java.lang.Throwable getException()
          Deprecated. PUBLIC: Return the exception that caused the log entry.
 int getLevel()
          Deprecated. PUBLIC: Return the request level of the log entry.
 java.lang.String getMessage()
          Deprecated. PUBLIC: Return the log entry's message.
 java.lang.String getNameSpace()
          Deprecated. PUBLIC: Return the name space of the log entry.
 java.lang.Object[] getParameters()
          Deprecated. PUBLIC: Return the array of parameters to the message.
 Session getSession()
          Deprecated. PUBLIC: Return the session that generated the log entry.
 java.lang.Thread getThread()
          Deprecated. PUBLIC: Return the thread that was active when the log entry was generated.
 boolean hasException()
          Deprecated. PUBLIC: Return if the log entry was for an exception.
 boolean isDebug()
          Deprecated. replaced by level
 void setConnection(Accessor connection)
          Deprecated. PUBLIC: Set the connection that generated the log entry.
 void setDate(java.util.Date date)
          Deprecated. PUBLIC: Set the date of the log entry.
 void setException(java.lang.Throwable throwable)
          Deprecated. PUBLIC: Set the exception that caused the log entry.
 void setIsDebug(boolean isDebug)
          Deprecated. replaced by level
 void setLevel(int level)
          Deprecated. PUBLIC: Set the request level of the log entry.
 void setMessage(java.lang.String message)
          Deprecated. PUBLIC: Set the entry's message.
 void setNameSpace(java.lang.String nameSpace)
          Deprecated. PUBLIC: Set the name space of the log entry.
 void setParameters(java.lang.Object[] params)
          Deprecated. PUBLIC: Set the array of parameters to the message.
 void setSession(Session session)
          Deprecated. PUBLIC: Set the session that generated the log entry.
 void setShouldTranslate(boolean shouldTranslate)
          Deprecated. PUBLIC: Set if the message should be translated.
 void setThread(java.lang.Thread thread)
          Deprecated. PUBLIC: Set the thread that was active when the log entry was generated.
 boolean shouldTranslate()
          Deprecated. PUBLIC: Return if the message should be translated.
 java.lang.String toString()
          Deprecated. PUBLIC: Print message.

 

Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait

 

Constructor Detail

SessionLogEntry

public SessionLogEntry(Session session)
Deprecated. 
PUBLIC: Create a new session log entry for a session

SessionLogEntry

public SessionLogEntry(Session session,
                       java.lang.Throwable throwable)
Deprecated. 
PUBLIC: Create a new session log entry for a session and an exception

SessionLogEntry

public SessionLogEntry(Session session,
                       java.lang.String message)
Deprecated. 
PUBLIC: Create a new session log entry for a session and a message

SessionLogEntry

public SessionLogEntry(Session session,
                       java.lang.String message,
                       Accessor connection)
Deprecated. 
PUBLIC: Create a new session log entry for a session, a message and an accessor

SessionLogEntry

public SessionLogEntry(Session session,
                       java.lang.String message,
                       boolean isDebug,
                       Accessor connection)
Deprecated. replaced by SessionLogEntry(int level, Session session, String message, Object[] params, Accessor connection, boolean shouldTranslate)
OBSOLETE:

SessionLogEntry

public SessionLogEntry(int level,
                       Session session,
                       java.lang.String message,
                       java.lang.Object[] params,
                       Accessor connection,
                       boolean shouldTranslate)
Deprecated. 
PUBLIC: Create a new session log entry for a request level, a session, a message and an accessor

SessionLogEntry

public SessionLogEntry(int level,
                       java.lang.String category,
                       Session session,
                       java.lang.String message,
                       java.lang.Object[] params,
                       Accessor connection,
                       boolean shouldTranslate)
Deprecated. 
PUBLIC: Create a new session log entry for a request level, a session, a message and an accessor

SessionLogEntry

public SessionLogEntry(Session session,
                       int level,
                       java.lang.String category,
                       java.lang.Throwable throwable)
Deprecated. 
PUBLIC: Create a new session log entry for a session, a level, a category and an exception

Method Detail

getConnection

public Accessor getConnection()
Deprecated. 
PUBLIC: Return the connection that generated the log entry.

getDate

public java.util.Date getDate()
Deprecated. 
PUBLIC: Return the date of the log entry.

getException

public java.lang.Throwable getException()
Deprecated. 
PUBLIC: Return the exception that caused the log entry.

getMessage

public java.lang.String getMessage()
Deprecated. 
PUBLIC: Return the log entry's message.

getSession

public Session getSession()
Deprecated. 
PUBLIC: Return the session that generated the log entry.

getThread

public java.lang.Thread getThread()
Deprecated. 
PUBLIC: Return the thread that was active when the log entry was generated.

getLevel

public int getLevel()
Deprecated. 
PUBLIC: Return the request level of the log entry.

getNameSpace

public java.lang.String getNameSpace()
Deprecated. 
PUBLIC: Return the name space of the log entry.

getParameters

public java.lang.Object[] getParameters()
Deprecated. 
PUBLIC: Return the array of parameters to the message.

shouldTranslate

public boolean shouldTranslate()
Deprecated. 
PUBLIC: Return if the message should be translated.

hasException

public boolean hasException()
Deprecated. 
PUBLIC: Return if the log entry was for an exception.

isDebug

public boolean isDebug()
Deprecated. replaced by level
OBSOLETE:

setConnection

public void setConnection(Accessor connection)
Deprecated. 
PUBLIC: Set the connection that generated the log entry.

setDate

public void setDate(java.util.Date date)
Deprecated. 
PUBLIC: Set the date of the log entry.

setException

public void setException(java.lang.Throwable throwable)
Deprecated. 
PUBLIC: Set the exception that caused the log entry.

setIsDebug

public void setIsDebug(boolean isDebug)
Deprecated. replaced by level
OBSOLETE:

setMessage

public void setMessage(java.lang.String message)
Deprecated. 
PUBLIC: Set the entry's message.

setSession

public void setSession(Session session)
Deprecated. 
PUBLIC: Set the session that generated the log entry.

setThread

public void setThread(java.lang.Thread thread)
Deprecated. 
PUBLIC: Set the thread that was active when the log entry was generated.

setLevel

public void setLevel(int level)
Deprecated. 
PUBLIC: Set the request level of the log entry.

setNameSpace

public void setNameSpace(java.lang.String nameSpace)
Deprecated. 
PUBLIC: Set the name space of the log entry.

setParameters

public void setParameters(java.lang.Object[] params)
Deprecated. 
PUBLIC: Set the array of parameters to the message.

setShouldTranslate

public void setShouldTranslate(boolean shouldTranslate)
Deprecated. 
PUBLIC: Set if the message should be translated.

toString

public java.lang.String toString()
Deprecated. 
PUBLIC: Print message.

Skip navigation links

Copyright © 1998, 2006, Oracle. All Rights Reserved.