public class LoggingBridge extends BaseUtilBridge implements ILogging, APIBridge
apiGroup| Constructor and Description |
|---|
LoggingBridge(ILogging delegate)
Constructor with delegate.
|
| Modifier and Type | Method and Description |
|---|---|
ILogging |
getDelegate()
Get the delegate implementation.
|
APIResponse |
invoke(APIRequest request)
Invokes the given method specified in the API request object.
|
void |
log(ILoggingLogLevel level,
java.lang.String message)
Logs the given message, with the given log level if specified, to the standard platform/environment.
|
void |
log(ILoggingLogLevel level,
java.lang.String category,
java.lang.String message)
Logs the given message, with the given log level if specified, to the standard platform/environment.
|
void |
setDelegate(ILogging delegate)
Set the delegate implementation.
|
getAPIGroup, getAPIVersion, getJSONParserclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetAPIGroup, getAPIVersionpublic LoggingBridge(ILogging delegate)
delegate - The delegate implementing platform specific functions.public final ILogging getDelegate()
public final void setDelegate(ILogging delegate)
delegate - The delegate implementing platform specific functions.public void log(ILoggingLogLevel level, java.lang.String message)
public void log(ILoggingLogLevel level, java.lang.String category, java.lang.String message)
public APIResponse invoke(APIRequest request)
invoke in interface APIBridgeinvoke in class BaseUtilBridgerequest - APIRequest object containing method name and parameters.