| Package | Description |
|---|---|
| org.jwall.web.audit |
This package encapsulates the AuditEvent-framework that is used to represent,
create, manage and handle audit events within a Java environment.
|
| org.jwall.web.audit.filter |
The filter package provides two simple classes/interfaces to construct filters: the
AuditEventMatch interface and the AuditEventFilter class.
|
| org.jwall.web.audit.io |
This package contains the interfaces and classes that are used to read
event from various sources or write audit-event to files.
|
| org.jwall.web.audit.net |
The
net-package provides network communication like sending
or receiving of audit data over tcp-connections. |
| org.jwall.web.audit.rules.operators |
| Modifier and Type | Method and Description |
|---|---|
Long |
AuditEventView.count(AuditEventFilter filter)
This method will return the number of events which match the given filter
filter AND the user-specific implicit filter expressions. |
Iterator<Integer> |
AuditEventView.iterator(AuditEventFilter filter)
Creates an iterator over all event entries matching the given filter.
|
List<AuditEvent> |
AuditEventView.list(AuditEventFilter filter,
int offset,
int num)
Deprecated.
|
List<AuditEvent> |
AuditEventView.list(AuditEventFilter filter,
List<String> order,
int offset,
int num)
Deprecated.
|
void |
AuditEventQueue.setFilter(AuditEventFilter filter)
This method sets a filter for the queue instance.
|
void |
AuditEventView.tag(AuditEventFilter filter,
String user,
List<String> tags)
Deprecated.
|
void |
AuditEventView.untag(AuditEventFilter filter,
String user,
List<String> tags)
Deprecated.
use untag(FilterExpression,..) instead
|
| Modifier and Type | Method and Description |
|---|---|
static AuditEventFilter |
FilterCompiler.compile(FilterExpression exp) |
static AuditEventFilter |
FilterCompiler.compile(String str) |
static AuditEventFilter |
FilterCompiler.compile(String str,
Collection<String> variables) |
static AuditEventFilter |
FilterCompiler.compile(String str,
Set<String> variables,
Set<Operator> operators) |
static AuditEventFilter |
FilterCompiler.compile(String str,
Set<String> variables,
Set<Operator> operators,
Set<BooleanOperator> boolOps) |
AuditEventFilter |
AuditEventFilter.fromXML(String input) |
| Modifier and Type | Method and Description |
|---|---|
static FilterExpression |
FilterCompiler.map(AuditEventFilter filter) |
| Constructor and Description |
|---|
FilterExpressionList(AuditEventFilter filter) |
| Modifier and Type | Method and Description |
|---|---|
void |
BufferedAuditEventSource.setFilter(AuditEventFilter filter) |
void |
AuditEventSource.setFilter(AuditEventFilter filter)
This sets a filter on the source.
|
| Modifier and Type | Method and Description |
|---|---|
void |
NetworkAuditEventSource.setFilter(AuditEventFilter f) |
| Modifier and Type | Class and Description |
|---|---|
class |
Conditions
This class describes a list of matches which are conditions for an event-rule
to fire.
|
Copyright © 2015 jwall.org. All Rights Reserved.