| Package | Description |
|---|---|
| org.opencms.db.log |
This package contains the implementation classes for the DB log.
|
| Modifier and Type | Method and Description |
|---|---|
CmsLogEntryType |
CmsLogEntry.getType()
Returns the type.
|
static CmsLogEntryType |
CmsLogEntryType.valueOf(int id)
Parses an
int into a log entry type. |
static CmsLogEntryType |
CmsLogEntryType.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CmsLogEntryType[] |
CmsLogEntryType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.Set<CmsLogEntryType> |
CmsLogFilter.getExcludeTypes()
Returns the types to exclude.
|
java.util.Set<CmsLogEntryType> |
CmsLogFilter.getIncludeTypes()
Returns the types to include.
|
| Modifier and Type | Method and Description |
|---|---|
CmsLogFilter |
CmsLogFilter.excludeType(CmsLogEntryType type)
Returns an extended filter with the given type restriction.
|
CmsLogFilter |
CmsLogFilter.includeType(CmsLogEntryType type)
Returns an extended filter with the given type restriction.
|
boolean |
CmsLogFilter.matchType(CmsLogEntryType type)
Returns
true if the given log entry type matches this filter. |
| Constructor and Description |
|---|
CmsLogEntry(CmsDbContext dbc,
CmsUUID structureId,
CmsLogEntryType type,
java.lang.String[] data)
Public constructor, will use the current time for time stamp.
|
CmsLogEntry(CmsUUID userId,
long date,
CmsUUID structureId,
CmsLogEntryType type,
java.lang.String[] data)
Public constructor.
|