Enum Class JdbcAuditTrailManager.AuditTableColumns
java.lang.Object
java.lang.Enum<JdbcAuditTrailManager.AuditTableColumns>
org.apereo.inspektr.audit.support.JdbcAuditTrailManager.AuditTableColumns
- All Implemented Interfaces:
Serializable,Comparable<JdbcAuditTrailManager.AuditTableColumns>,Constable
- Enclosing class:
JdbcAuditTrailManager
public static enum JdbcAuditTrailManager.AuditTableColumns
extends Enum<JdbcAuditTrailManager.AuditTableColumns>
Auditable columns in the database table.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAction column.Application code column.Client IP column.Audit date column.Extra info column.Geolocation column.Headers column.Locale column.Resource column.Server IP column.User column.UserAgent column. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
USER
User column. -
CLIENT_IP
Client IP column. -
SERVER_IP
Server IP column. -
RESOURCE
Resource column. -
ACTION
Action column. -
APPLIC_CD
Application code column. -
DATE
Audit date column. -
GEOLOCATION
Geolocation column. -
USERAGENT
UserAgent column. -
LOCALE
Locale column. -
HEADERS
Headers column. -
EXTRA_INFO
Extra info column.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
getColumnName
-