From ece7d18cf35374bf4e26d041799cda8f791c89f8 Mon Sep 17 00:00:00 2001 From: gregor Date: Mon, 7 Jul 2003 10:58:37 +0000 Subject: Initial commit git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@2 d688527b-c9ab-4aba-bd8d-4036d912da1d --- .../moa/spss/server/logging/IaikLog.html | 518 +++++++++++++++++++++ 1 file changed, 518 insertions(+) create mode 100644 spss.server/doc/api-doc-internal/at/gv/egovernment/moa/spss/server/logging/IaikLog.html (limited to 'spss.server/doc/api-doc-internal/at/gv/egovernment/moa/spss/server/logging/IaikLog.html') diff --git a/spss.server/doc/api-doc-internal/at/gv/egovernment/moa/spss/server/logging/IaikLog.html b/spss.server/doc/api-doc-internal/at/gv/egovernment/moa/spss/server/logging/IaikLog.html new file mode 100644 index 000000000..265a724d6 --- /dev/null +++ b/spss.server/doc/api-doc-internal/at/gv/egovernment/moa/spss/server/logging/IaikLog.html @@ -0,0 +1,518 @@ + + + + + + +MOA SP/SS Server Internal API: Class IaikLog + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + +
+ +

+ +at.gv.egovernment.moa.spss.server.logging +
+Class IaikLog

+
+java.lang.Object
+  |
+  +--at.gv.egovernment.moa.spss.server.logging.IaikLog
+
+
+
All Implemented Interfaces:
iaik.logging.Log
+
+
+
+
public class IaikLog
extends Object
implements iaik.logging.Log
+ +

+An implementation of the iaik.logging.Log + interface that is based on Jakarta Commons-Logging. +

+

+
Version:
$Id$
+
Author:
Fatemeh Philippi
+
+
+ +

+ + + + + + + + + + + + + + +
+Field Summary
+static StringIAIK_LOG_HIERARCHY + +
+          The hierarchy to log all IAIK output to.
+  + + + + + + + + + + +
+Constructor Summary
IaikLog(String nodeId) + +
+          Create a new IaikLog.
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ voiddebug(iaik.logging.TransactionId transactionId, + Object message, + Throwable t) + +
+           
+ voiderror(iaik.logging.TransactionId transactionId, + Object message, + Throwable t) + +
+           
+ voidfatal(iaik.logging.TransactionId transactionId, + Object message, + Throwable t) + +
+           
+ StringgetNodeId() + +
+           
+ voidinfo(iaik.logging.TransactionId transactionId, + Object message, + Throwable t) + +
+           
+ booleanisDebugEnabled() + +
+           
+ booleanisErrorEnabled() + +
+           
+ booleanisFatalEnabled() + +
+           
+ booleanisInfoEnabled() + +
+           
+ booleanisWarnEnabled() + +
+           
+ voidsetNodeId(String nodeId) + +
+           
+ voidwarn(iaik.logging.TransactionId transactionId, + Object message, + Throwable t) + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Field Detail
+ +

+IAIK_LOG_HIERARCHY

+
+public static final String IAIK_LOG_HIERARCHY
+
+
The hierarchy to log all IAIK output to.
+ + + + + + + + +
+Constructor Detail
+ +

+IaikLog

+
+public IaikLog(String nodeId)
+
+
Create a new IaikLog.
+
Parameters:
nodeId - The node ID for this Log object.
+
+
+ + + + + + + + +
+Method Detail
+ +

+isDebugEnabled

+
+public boolean isDebugEnabled()
+
+
+
Specified by:
isDebugEnabled in interface iaik.logging.Log
+
+
+
See Also:
Log.isDebugEnabled()
+
+
+
+ +

+debug

+
+public void debug(iaik.logging.TransactionId transactionId,
+                  Object message,
+                  Throwable t)
+
+
+
Specified by:
debug in interface iaik.logging.Log
+
+
+
See Also:
Log.debug(TransactionId, Object, Throwable)
+
+
+
+ +

+isInfoEnabled

+
+public boolean isInfoEnabled()
+
+
+
Specified by:
isInfoEnabled in interface iaik.logging.Log
+
+
+
See Also:
Log.isInfoEnabled()
+
+
+
+ +

+info

+
+public void info(iaik.logging.TransactionId transactionId,
+                 Object message,
+                 Throwable t)
+
+
+
Specified by:
info in interface iaik.logging.Log
+
+
+
See Also:
Log.info(TransactionId, Object, Throwable)
+
+
+
+ +

+isWarnEnabled

+
+public boolean isWarnEnabled()
+
+
+
Specified by:
isWarnEnabled in interface iaik.logging.Log
+
+
+
See Also:
Log.isWarnEnabled()
+
+
+
+ +

+warn

+
+public void warn(iaik.logging.TransactionId transactionId,
+                 Object message,
+                 Throwable t)
+
+
+
Specified by:
warn in interface iaik.logging.Log
+
+
+
See Also:
Log.warn(TransactionId, Object, Throwable)
+
+
+
+ +

+isErrorEnabled

+
+public boolean isErrorEnabled()
+
+
+
Specified by:
isErrorEnabled in interface iaik.logging.Log
+
+
+
See Also:
Log.isErrorEnabled()
+
+
+
+ +

+error

+
+public void error(iaik.logging.TransactionId transactionId,
+                  Object message,
+                  Throwable t)
+
+
+
Specified by:
error in interface iaik.logging.Log
+
+
+
See Also:
Log.error(TransactionId, Object, Throwable)
+
+
+
+ +

+isFatalEnabled

+
+public boolean isFatalEnabled()
+
+
+
Specified by:
isFatalEnabled in interface iaik.logging.Log
+
+
+
See Also:
Log.isFatalEnabled()
+
+
+
+ +

+fatal

+
+public void fatal(iaik.logging.TransactionId transactionId,
+                  Object message,
+                  Throwable t)
+
+
+
Specified by:
fatal in interface iaik.logging.Log
+
+
+
See Also:
Log.fatal(TransactionId, Object, Throwable)
+
+
+
+ +

+setNodeId

+
+public void setNodeId(String nodeId)
+
+
+
Specified by:
setNodeId in interface iaik.logging.Log
+
+
+
See Also:
Log.setNodeId(String)
+
+
+
+ +

+getNodeId

+
+public String getNodeId()
+
+
+
Specified by:
getNodeId in interface iaik.logging.Log
+
+
+
See Also:
Log.getNodeId()
+
+
+ +
+ + + + + + + + + + + + + + + + + +
+ +
+ + +
+ + + -- cgit v1.2.3