From 33613a85afc4b1481367fbe92a17ee59c240250b Mon Sep 17 00:00:00 2001 From: Sven Eisenhauer Date: Fri, 10 Nov 2023 15:11:48 +0100 Subject: add new repo --- .../log4j/common/logging/impl/Log4JLogHandler.html | 506 +++++++++++++++++++++ .../logging/impl/Log4JLoggingConfiguration.html | 237 ++++++++++ .../logging/impl/class-use/Log4JLogHandler.html | 136 ++++++ .../impl/class-use/Log4JLoggingConfiguration.html | 136 ++++++ .../log4j/common/logging/impl/package-frame.html | 34 ++ .../log4j/common/logging/impl/package-summary.html | 154 +++++++ .../log4j/common/logging/impl/package-tree.html | 147 ++++++ .../log4j/common/logging/impl/package-use.html | 136 ++++++ 8 files changed, 1486 insertions(+) create mode 100644 Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/Log4JLogHandler.html create mode 100644 Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/Log4JLoggingConfiguration.html create mode 100644 Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/class-use/Log4JLogHandler.html create mode 100644 Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/class-use/Log4JLoggingConfiguration.html create mode 100644 Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/package-frame.html create mode 100644 Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/package-summary.html create mode 100644 Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/package-tree.html create mode 100644 Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/package-use.html (limited to 'Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j') diff --git a/Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/Log4JLogHandler.html b/Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/Log4JLogHandler.html new file mode 100644 index 0000000..70bfa30 --- /dev/null +++ b/Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/Log4JLogHandler.html @@ -0,0 +1,506 @@ + + + + + + +Log4JLogHandler (Quasar Client Building Blicks API) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +com.sdm.quasar.client.log4j.common.logging.impl +
+Class Log4JLogHandler

+
+java.lang.Object
+  extended bycom.sdm.quasar.client.log4j.common.logging.impl.Log4JLogHandler
+
+
+
All Implemented Interfaces:
LogHandler
+
+
+
+
public class Log4JLogHandler
extends java.lang.Object
implements LogHandler
+ +

+


+ +

+ + + + + + + + + + + + + + +
+Field Summary
+static java.lang.StringDEFAULT_MESSAGE_PATTERN + +
+          The default message pattern used to format log messages.
+  + + + + + + + + + + + + + + + + + + + +
+Constructor Summary
Log4JLogHandler() + +
+          Creates a new Log4JLogHandler. +
Log4JLogHandler(Logger log4jLogger) + +
+          Creates a new Log4JLogHandler.
Log4JLogHandler(Logger log4jLogger, + java.lang.String messagePattern, + int[] errorLoggingLevels) + +
+          Creates a new Log4JLogHandler. +
Log4JLogHandler(java.lang.String messagePattern, + int[] errorLoggingLevels) + +
+          Creates a new Log4JLogHandler. +
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ java.lang.StringgetMessagePattern() + +
+          Returns the message format pattern used to format + log messages.
+ booleanhandles(int loggingLevel, + CallerInformation callerInformation) + +
+          Returns true, if the LogHandler can handle logging + messages for the calling logger and logging level.
+ booleanisErrorLoggingLevel(int loggingLevel) + +
+          Returns true, if the given logging level is an 'error' + logging level or a normal one.
+ booleanisLogging(int loggingLevel, + CallerInformation callerInformation) + +
+          Tests, whether messages will be logged at the given logging level
+ voidlog(int loggingLevel, + CallerInformation callerInformation, + java.lang.String message, + java.lang.Throwable exception) + +
+          Logs a message including an optional exception if logging is enabled for the + specified calling logger and logging level.
+ voidsetMessagePattern(java.lang.String messagePattern) + +
+          Sets the message format pattern used to format + log messages.
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

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

+DEFAULT_MESSAGE_PATTERN

+
+public static final java.lang.String DEFAULT_MESSAGE_PATTERN
+
+
The default message pattern used to format log messages. +

+

+
See Also:
Constant Field Values
+
+ + + + + + + + +
+Constructor Detail
+ +

+Log4JLogHandler

+
+public Log4JLogHandler()
+
+
Creates a new Log4JLogHandler. + The Log4J Root Logger will be used (see Logger#getRootLogger(). +

+

+
+ +

+Log4JLogHandler

+
+public Log4JLogHandler(java.lang.String messagePattern,
+                       int[] errorLoggingLevels)
+
+
Creates a new Log4JLogHandler. + The Log4J Root Logger will be used (see Logger#getRootLogger(). +

+

Parameters:
messagePattern - the message-patter to use (if null, use default)
errorLoggingLevels - the logging levels, that should be used as + error logging levels (if null, use default)
+
+ +

+Log4JLogHandler

+
+public Log4JLogHandler(Logger log4jLogger)
+
+
Creates a new Log4JLogHandler. +

+

Parameters:
log4jLogger - The Log4J Logger that will be used.
+
+ +

+Log4JLogHandler

+
+public Log4JLogHandler(Logger log4jLogger,
+                       java.lang.String messagePattern,
+                       int[] errorLoggingLevels)
+
+
Creates a new Log4JLogHandler. + The Log4J Root Logger will be used (see Logger#getRootLogger(). +

+

Parameters:
log4jLogger - The Log4J Logger that will be used.
messagePattern - the message-patter to use (if null, use default)
errorLoggingLevels - the logging levels, that should be used as + error logging levels (if null, use default)
+ + + + + + + + +
+Method Detail
+ +

+handles

+
+public boolean handles(int loggingLevel,
+                       CallerInformation callerInformation)
+
+
Description copied from interface: LogHandler
+
Returns true, if the LogHandler can handle logging + messages for the calling logger and logging level. +

+

+
Specified by:
handles in interface LogHandler
+
+
+
Parameters:
loggingLevel - the level to be logged, one of the constants from LoggingLevel
callerInformation - stores information about the logger caller (garanteed to be not null) +
Returns:
true, iff this LogHandler can handle logging + messages for the logger class and logging level given
See Also:
de.bafa.jfee.common.logging.LogHandler#handles(int, de.bafa.jfee.common.logging.CallerInformation)
+
+
+
+ +

+isLogging

+
+public boolean isLogging(int loggingLevel,
+                         CallerInformation callerInformation)
+
+
Description copied from interface: LogHandler
+
Tests, whether messages will be logged at the given logging level +

+

+
Specified by:
isLogging in interface LogHandler
+
+
+
Parameters:
loggingLevel - the level to be logged, one of the constants from LoggingLevel
callerInformation - stores information about the logger caller (garanteed to be not null) +
Returns:
true, iff messages will be logged at the given level
See Also:
de.bafa.jfee.common.logging.LogHandler#isLogging(int, de.bafa.jfee.common.logging.CallerInformation)
+
+
+
+ +

+log

+
+public void log(int loggingLevel,
+                CallerInformation callerInformation,
+                java.lang.String message,
+                java.lang.Throwable exception)
+
+
Description copied from interface: LogHandler
+
Logs a message including an optional exception if logging is enabled for the + specified calling logger and logging level. +

+

+
Specified by:
log in interface LogHandler
+
+
+
Parameters:
loggingLevel - the level to be logged, one of the constants from LoggingLevel
callerInformation - stores information about the logger caller (garanteed to be not null)
message - the message to be logged (may be null)
exception - the exception to be logged (may be null)
See Also:
de.bafa.jfee.common.logging.LogHandler#log(int, de.bafa.jfee.common.logging.CallerInformation, java.lang.String, java.lang.Throwable)
+
+
+
+ +

+isErrorLoggingLevel

+
+public boolean isErrorLoggingLevel(int loggingLevel)
+
+
Returns true, if the given logging level is an 'error' + logging level or a normal one. +

+

+
+
+
+
Parameters:
loggingLevel - the logging level to check +
Returns:
true if the logging level should be logged as + error, false otherwise.
+
+
+
+ +

+getMessagePattern

+
+public java.lang.String getMessagePattern()
+
+
Returns the message format pattern used to format + log messages. +

+

+
+
+
+ +
Returns:
the message format pattern.
+
+
+
+ +

+setMessagePattern

+
+public void setMessagePattern(java.lang.String messagePattern)
+
+
Sets the message format pattern used to format + log messages. +

+

+
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/Log4JLoggingConfiguration.html b/Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/Log4JLoggingConfiguration.html new file mode 100644 index 0000000..92d029b --- /dev/null +++ b/Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/Log4JLoggingConfiguration.html @@ -0,0 +1,237 @@ + + + + + + +Log4JLoggingConfiguration (Quasar Client Building Blicks API) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +com.sdm.quasar.client.log4j.common.logging.impl +
+Class Log4JLoggingConfiguration

+
+java.lang.Object
+  extended bycom.sdm.quasar.client.log4j.common.logging.impl.Log4JLoggingConfiguration
+
+
+
All Implemented Interfaces:
Configuration, LoggingConfiguration
+
+
+
+
public class Log4JLoggingConfiguration
extends java.lang.Object
implements LoggingConfiguration
+ +

+This LoggingConfiguration initializes the LogManager + with a SimpleConsoleLogHandler and a + DefaultLoggingInformationCalculator. +

+ +

+

+
Version:
+
1.$Revision$
+
Author:
+
Thomas Wolf
+
+
+ +

+ + + + + + + + + + + + + + + + +
+Constructor Summary
Log4JLoggingConfiguration() + +
+          Creates a new Log4JLoggingConfiguration.
+  + + + + + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + + + + +
+Constructor Detail
+ +

+Log4JLoggingConfiguration

+
+public Log4JLoggingConfiguration()
+
+
Creates a new Log4JLoggingConfiguration. +

+

+ + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/class-use/Log4JLogHandler.html b/Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/class-use/Log4JLogHandler.html new file mode 100644 index 0000000..be43d01 --- /dev/null +++ b/Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/class-use/Log4JLogHandler.html @@ -0,0 +1,136 @@ + + + + + + +Uses of Class com.sdm.quasar.client.log4j.common.logging.impl.Log4JLogHandler (Quasar Client Building Blicks API) + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Uses of Class
com.sdm.quasar.client.log4j.common.logging.impl.Log4JLogHandler

+
+No usage of com.sdm.quasar.client.log4j.common.logging.impl.Log4JLogHandler +

+


+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/class-use/Log4JLoggingConfiguration.html b/Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/class-use/Log4JLoggingConfiguration.html new file mode 100644 index 0000000..1c99965 --- /dev/null +++ b/Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/class-use/Log4JLoggingConfiguration.html @@ -0,0 +1,136 @@ + + + + + + +Uses of Class com.sdm.quasar.client.log4j.common.logging.impl.Log4JLoggingConfiguration (Quasar Client Building Blicks API) + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Uses of Class
com.sdm.quasar.client.log4j.common.logging.impl.Log4JLoggingConfiguration

+
+No usage of com.sdm.quasar.client.log4j.common.logging.impl.Log4JLoggingConfiguration +

+


+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/package-frame.html b/Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/package-frame.html new file mode 100644 index 0000000..c7ae856 --- /dev/null +++ b/Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/package-frame.html @@ -0,0 +1,34 @@ + + + + + + +com.sdm.quasar.client.log4j.common.logging.impl (Quasar Client Building Blicks API) + + + + + + + + + + + +com.sdm.quasar.client.log4j.common.logging.impl + + + + +
+Classes  + +
+Log4JLoggingConfiguration +
+Log4JLogHandler
+ + + + diff --git a/Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/package-summary.html b/Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/package-summary.html new file mode 100644 index 0000000..94c3bf5 --- /dev/null +++ b/Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/package-summary.html @@ -0,0 +1,154 @@ + + + + + + +com.sdm.quasar.client.log4j.common.logging.impl (Quasar Client Building Blicks API) + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+

+Package com.sdm.quasar.client.log4j.common.logging.impl +

+ + + + + + + + + + + + + +
+Class Summary
Log4JLoggingConfigurationThis LoggingConfiguration initializes the LogManager + with a SimpleConsoleLogHandler and a + DefaultLoggingInformationCalculator.
Log4JLogHandler 
+  + +

+


+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/package-tree.html b/Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/package-tree.html new file mode 100644 index 0000000..9a43038 --- /dev/null +++ b/Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/package-tree.html @@ -0,0 +1,147 @@ + + + + + + +com.sdm.quasar.client.log4j.common.logging.impl Class Hierarchy (Quasar Client Building Blicks API) + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Hierarchy For Package com.sdm.quasar.client.log4j.common.logging.impl +

+
+
+
Package Hierarchies:
All Packages
+
+

+Class Hierarchy +

+ +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/package-use.html b/Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/package-use.html new file mode 100644 index 0000000..22e07d1 --- /dev/null +++ b/Master/Reference Architectures and Patterns/labs/QuasarClient/api/com/sdm/quasar/client/log4j/common/logging/impl/package-use.html @@ -0,0 +1,136 @@ + + + + + + +Uses of Package com.sdm.quasar.client.log4j.common.logging.impl (Quasar Client Building Blicks API) + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Uses of Package
com.sdm.quasar.client.log4j.common.logging.impl

+
+No usage of com.sdm.quasar.client.log4j.common.logging.impl +

+


+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + -- cgit v1.2.3