Class AuditEntry
- java.lang.Object
-
- org.apache.syncope.common.lib.audit.AuditEntry
-
- All Implemented Interfaces:
Serializable
,BaseBean
public class AuditEntry extends Object implements BaseBean
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AuditEntry()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getBefore()
OffsetDateTime
getDate()
List<String>
getInputs()
AuditLoggerName
getLogger()
String
getOutput()
String
getThrowable()
String
getWho()
int
hashCode()
void
setBefore(String before)
void
setDate(OffsetDateTime date)
void
setLogger(AuditLoggerName logger)
void
setOutput(String output)
void
setThrowable(String throwable)
void
setWho(String who)
-
-
-
Method Detail
-
getWho
public String getWho()
-
setWho
public void setWho(String who)
-
getDate
public OffsetDateTime getDate()
-
setDate
public void setDate(OffsetDateTime date)
-
getLogger
public AuditLoggerName getLogger()
-
setLogger
public void setLogger(AuditLoggerName logger)
-
getBefore
public String getBefore()
-
setBefore
public void setBefore(String before)
-
getOutput
public String getOutput()
-
setOutput
public void setOutput(String output)
-
getThrowable
public String getThrowable()
-
setThrowable
public void setThrowable(String throwable)
-
-