org.apache.cxf.management.web.browser.client.service.browser
Class Entry

java.lang.Object
  extended by org.apache.cxf.management.web.browser.client.service.browser.Entry

public class Entry
extends Object

The class represents log record, which is parsed from DOM representation of LogRecord.

Log record is single piece of information log by logger. For example:

See Also:
FeedProxy

Constructor Summary
Entry(com.google.gwt.xml.client.Node entryNode)
          Constructs a new Entry by convert DOM representation.
 
Method Summary
 Date getEventTimestamp()
           
 String getLevel()
          Returns level of the log record.
 String getMessage()
          Returns long message of the log record.
 String getThrowable()
          Returns error message and stack trace related with occured exception.
 String getTitle()
          Returns short message of the log record.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Entry

public Entry(@Nonnull
             com.google.gwt.xml.client.Node entryNode)
Constructs a new Entry by convert DOM representation.

Parameters:
entryNode - XML node which represent entry (nonnull);
Method Detail

getTitle

@Nonnull
public String getTitle()
Returns short message of the log record.

Returns:
short message (nonull)

getMessage

@Nonnull
public String getMessage()
Returns long message of the log record.

Returns:
long message (nonull)

getLevel

@Nonnull
public String getLevel()
Returns level of the log record. Possible values: 'DEBUG', 'INFO', 'WARN', 'ERROR'.

Returns:
level (nonull)

getThrowable

@Nonnull
public String getThrowable()
Returns error message and stack trace related with occured exception.

Returns:
error message and stack trace (nonull)

getEventTimestamp

@Nullable
public Date getEventTimestamp()


Apache CXF