public class

Logging

extends Object
java.lang.Object
   ↳ com.google.gwt.requestfactory.server.Logging

Class Overview

Server side object that handles log messages sent by RequestFactoryLogHandler.

Summary

Public Constructors
Logging()
Public Methods
String getId()
Returns the id of this instance.
Integer getVersion()
Returns the version of this instance.
static void logMessage(String logRecordJson)
Logs a message.
void setId(String id)
Sets the id on this instance.
static void setSymbolMapsDirectory(String dir)
This function is only for server side use which is why it's not in the LoggingRequest interface.
void setVersion(Integer version)
Sets the version of this instance.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public Logging ()

Public Methods

public String getId ()

Returns the id of this instance.

Returns
  • a String id
See Also

public Integer getVersion ()

Returns the version of this instance.

Returns
  • an Integer version number

public static void logMessage (String logRecordJson)

Logs a message.

public void setId (String id)

Sets the id on this instance.

Parameters
id a String id
See Also

public static void setSymbolMapsDirectory (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

public void setVersion (Integer version)

Sets the version of this instance.

Parameters
version an Integer version number
See Also