GWT 2.7.0

com.google.web.bindery.requestfactory.server
Class Logging

java.lang.Object
  extended by com.google.web.bindery.requestfactory.server.Logging

public class Logging
extends java.lang.Object

Server-side object that handles log messages sent by RequestFactoryLogHandler .


Constructor Summary
Logging()
           
 
Method Summary
 java.lang.String getId()
          Returns the id of this instance.
 java.lang.Integer getVersion()
          Returns the version of this instance.
static void logMessage(java.lang.String logRecordJson)
          Logs a message.
 void setId(java.lang.String id)
          Sets the id on this instance.
static void setSymbolMapsDirectory(java.lang.String dir)
          This function is only for server-side use which is why it's not in the LoggingRequest interface.
 void setVersion(java.lang.Integer version)
          Sets the version of this instance.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Logging

public Logging()
Method Detail

logMessage

public static void logMessage(java.lang.String logRecordJson)
                       throws RemoteLoggingServiceUtil.RemoteLoggingException
Logs a message.

Parameters:
logRecordJson - a json serialized LogRecord, as provided by JsonLogRecordClientUtil.logRecordAsJsonObject(LogRecord)
Throws:
RemoteLoggingServiceUtil.RemoteLoggingException - if logging fails

setSymbolMapsDirectory

public static void setSymbolMapsDirectory(java.lang.String dir)
This function is only for server-side use which is why it's not in the LoggingRequest interface.

Parameters:
dir - a directory, specified as a String

getId

public java.lang.String getId()
Returns the id of this instance.

Returns:
a String id
See Also:
setId(String)

getVersion

public java.lang.Integer getVersion()
Returns the version of this instance.

Returns:
an Integer version number
See Also:
setVersion(Integer)

setId

public void setId(java.lang.String id)
Sets the id on this instance.

Parameters:
id - a String id
See Also:
getId()

setVersion

public void setVersion(java.lang.Integer version)
Sets the version of this instance.

Parameters:
version - an Integer version number
See Also:
getVersion()

GWT 2.7.0