Class ErrorLogEntry
- java.lang.Object
-
- com.gentics.contentnode.rest.model.response.log.ErrorLogEntry
-
- All Implemented Interfaces:
Serializable
public class ErrorLogEntry extends Object implements Serializable
Model of a logged error- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ErrorLogEntry()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDetail()
Details about errorint
getErrorDo()
Error DOint
getHaltId()
Halt IDint
getId()
Entry IDString
getRequest()
RequestString
getSid()
SID of the sessionString
getStacktrace()
Error stacktraceint
getTimestamp()
TimestampString
getUser()
Lastname and Firstname of the acting UserErrorLogEntry
setDetail(String detail)
Set detailsErrorLogEntry
setErrorDo(int errorDo)
Set the error DOErrorLogEntry
setHaltId(int haltId)
Set the halt IDErrorLogEntry
setId(int id)
Set the IDErrorLogEntry
setRequest(String request)
Set the requestErrorLogEntry
setSid(String sid)
Set the SIDErrorLogEntry
setStacktrace(String stacktrace)
Set the stacktraceErrorLogEntry
setTimestamp(int timestamp)
Set the timestampErrorLogEntry
setUser(String user)
Set user name
-
-
-
Method Detail
-
getId
public int getId()
Entry ID- Returns:
- ID
-
setId
public ErrorLogEntry setId(int id)
Set the ID- Parameters:
id
- ID- Returns:
- fluent API
-
getSid
public String getSid()
SID of the session- Returns:
- SID
-
setSid
public ErrorLogEntry setSid(String sid)
Set the SID- Parameters:
sid
- SID- Returns:
- fluent API
-
getUser
public String getUser()
Lastname and Firstname of the acting User- Returns:
- user name
-
setUser
public ErrorLogEntry setUser(String user)
Set user name- Parameters:
user
- name- Returns:
- fluent API
-
getHaltId
public int getHaltId()
Halt ID- Returns:
- halt ID
-
setHaltId
public ErrorLogEntry setHaltId(int haltId)
Set the halt ID- Parameters:
haltId
- halt ID- Returns:
- fluent API
-
getRequest
public String getRequest()
Request- Returns:
- request
-
setRequest
public ErrorLogEntry setRequest(String request)
Set the request- Parameters:
request
-- Returns:
- fluent API
-
getErrorDo
public int getErrorDo()
Error DO- Returns:
- DO
-
setErrorDo
public ErrorLogEntry setErrorDo(int errorDo)
Set the error DO- Parameters:
errorDo
- DO- Returns:
- fluent API
-
getTimestamp
public int getTimestamp()
Timestamp- Returns:
- timestamp
-
setTimestamp
public ErrorLogEntry setTimestamp(int timestamp)
Set the timestamp- Parameters:
timestamp
-- Returns:
- fluent API
-
getDetail
public String getDetail()
Details about error- Returns:
- details
-
setDetail
public ErrorLogEntry setDetail(String detail)
Set details- Parameters:
detail
-- Returns:
- fluent API
-
getStacktrace
public String getStacktrace()
Error stacktrace- Returns:
- stacktrace
-
setStacktrace
public ErrorLogEntry setStacktrace(String stacktrace)
Set the stacktrace- Parameters:
stacktrace
-- Returns:
- fluent API
-
-