Package | Description |
---|---|
org.forgerock.audit |
Package contains the AuditService.
|
org.forgerock.audit.events.handlers |
This package contains the default
AuditEventHandlers . |
org.forgerock.audit.handlers.csv |
This package contains the default AuditEventHandler implementations.
|
org.forgerock.audit.handlers.elasticsearch |
This package contains the Elasticsearch
AuditEventHandler implementation. |
org.forgerock.audit.handlers.jdbc |
This package contains a JDBC AuditEventHandler implementation.
|
org.forgerock.audit.handlers.jms |
This package contains a JMS AuditEventHandler implementation.
|
org.forgerock.audit.handlers.json |
This package contains the JSON-file
AuditEventHandler implementation. |
org.forgerock.audit.handlers.splunk |
This package contains the audit handler implementation for Splunk.
|
org.forgerock.audit.handlers.syslog |
This package contains a Syslog AuditEventHandler implementation.
|
org.forgerock.json.resource |
Classes and interfaces for core types including connections, request
handlers, resources, and their exceptions.
|
org.forgerock.openig.tools |
Common tools used in policy service.
|
org.forgerock.openig.ui.record |
Defines a storage service to be used by the UI to persist its component model.
|
Modifier and Type | Method and Description |
---|---|
Promise<QueryResponse,ResourceException> |
AuditServiceProxy.handleQuery(Context context,
QueryRequest request,
QueryResourceHandler handler) |
Promise<QueryResponse,ResourceException> |
AuditService.handleQuery(Context context,
QueryRequest request,
QueryResourceHandler handler)
Performs the query on the specified object and returns the associated results.
|
Modifier and Type | Method and Description |
---|---|
Promise<QueryResponse,ResourceException> |
NoOpAuditEventHandler.queryEvents(Context context,
String topic,
QueryRequest query,
QueryResourceHandler handler) |
Promise<QueryResponse,ResourceException> |
AuditEventHandler.queryEvents(Context context,
String topic,
QueryRequest query,
QueryResourceHandler handler)
Query some events from the provided topic.
|
Modifier and Type | Method and Description |
---|---|
Promise<QueryResponse,ResourceException> |
CsvAuditEventHandler.queryEvents(Context context,
String topic,
QueryRequest query,
QueryResourceHandler handler)
Perform a query on the csv audit log.
|
Modifier and Type | Method and Description |
---|---|
Promise<QueryResponse,ResourceException> |
ElasticsearchAuditEventHandler.queryEvents(Context context,
String topic,
QueryRequest query,
QueryResourceHandler handler)
Queries the Elasticsearch
Search API for
audit events.
|
Modifier and Type | Method and Description |
---|---|
Promise<QueryResponse,ResourceException> |
JdbcAuditEventHandler.queryEvents(Context context,
String topic,
QueryRequest queryRequest,
QueryResourceHandler queryResourceHandler)
Query some events from the provided topic.
|
Modifier and Type | Method and Description |
---|---|
Promise<QueryResponse,ResourceException> |
JmsAuditEventHandler.queryEvents(Context context,
String topic,
QueryRequest queryRequest,
QueryResourceHandler queryResourceHandler)
Returns NotSupportedException as query is not implemented for JMS.
|
Modifier and Type | Method and Description |
---|---|
Promise<QueryResponse,ResourceException> |
JsonAuditEventHandler.queryEvents(Context context,
String topic,
QueryRequest query,
QueryResourceHandler handler) |
Modifier and Type | Method and Description |
---|---|
Promise<QueryResponse,ResourceException> |
SplunkAuditEventHandler.queryEvents(Context context,
String topic,
QueryRequest query,
QueryResourceHandler handler) |
Modifier and Type | Method and Description |
---|---|
Promise<QueryResponse,ResourceException> |
SyslogAuditEventHandler.queryEvents(Context context,
String topic,
QueryRequest queryRequest,
QueryResourceHandler queryResourceHandler) |
Modifier and Type | Method and Description |
---|---|
QueryRequest |
QueryRequest.addField(JsonPointer... fields) |
QueryRequest |
QueryRequest.addField(String... fields) |
QueryRequest |
QueryRequest.addSortKey(SortKey... keys)
Adds one or more sort keys which will be used for ordering the JSON resources returned by this query request.
|
QueryRequest |
QueryRequest.addSortKey(String... keys)
Adds one or more sort keys which will be used for ordering the JSON resources returned by this query request.
|
static QueryRequest |
Requests.copyOfQueryRequest(QueryRequest request)
Returns a copy of the provided query request.
|
static QueryRequest |
Requests.newQueryRequest(ResourcePath resourceContainer)
Returns a new query request with the provided resource container path.
|
static QueryRequest |
Requests.newQueryRequest(String resourceContainer)
Returns a new query request with the provided resource container path.
|
QueryRequest |
QueryRequest.setAdditionalParameter(String name,
String value) |
QueryRequest |
QueryRequest.setPagedResultsCookie(String cookie)
Sets the opaque cookie which is used by the resource provider to track its position in the set of query results.
|
QueryRequest |
QueryRequest.setPagedResultsOffset(int offset)
Sets the zero-based index of the first resource which should be included in the query results.
|
QueryRequest |
QueryRequest.setPageSize(int size)
Sets the requested page results page size or
0 if paged results are not required. |
QueryRequest |
QueryRequest.setPreferredLocales(PreferredLocales preferredLocales) |
QueryRequest |
QueryRequest.setQueryExpression(String expression)
Sets the native query expression which will be used for processing the query request.
|
QueryRequest |
QueryRequest.setQueryFilter(QueryFilter<JsonPointer> filter)
Sets the query filter which will be used for selecting which JSON resources will be returned.
|
QueryRequest |
QueryRequest.setQueryId(String id)
Sets the query identifier for pre-defined queries.
|
QueryRequest |
QueryRequest.setResourcePath(ResourcePath path) |
QueryRequest |
QueryRequest.setResourcePath(String path) |
QueryRequest |
QueryRequest.setResourceVersion(Version resourceVersion) |
QueryRequest |
QueryRequest.setTotalPagedResultsPolicy(CountPolicy policy)
Sets the policy for calculating the total number of paged results.
|
Modifier and Type | Method and Description |
---|---|
static QueryRequest |
Requests.copyOfQueryRequest(QueryRequest request)
Returns a copy of the provided query request.
|
Promise<QueryResponse,ResourceException> |
ResourceApiVersionRoutingFilter.filterQuery(Context context,
QueryRequest request,
QueryResourceHandler handler,
RequestHandler next) |
Promise<QueryResponse,ResourceException> |
Filter.filterQuery(Context context,
QueryRequest request,
QueryResourceHandler handler,
RequestHandler next)
Filters a query request.
|
QueryResponse |
SynchronousRequestHandler.handleQuery(Context context,
QueryRequest request,
Collection<ResourceResponse> resources)
Searches for all JSON resources matching a user specified set of
criteria.
|
Promise<QueryResponse,ResourceException> |
Router.handleQuery(Context context,
QueryRequest request,
QueryResourceHandler handler) |
default Promise<QueryResponse,ResourceException> |
RequestHandler.handleQuery(Context context,
QueryRequest request,
QueryResourceHandler handler)
Searches for all JSON resources matching a user specified set of
criteria, returning a
Promise that will be completed when the
search has completed. |
Promise<QueryResponse,ResourceException> |
FilterChain.handleQuery(Context context,
QueryRequest request,
QueryResourceHandler handler) |
QueryResponse |
Connection.query(Context context,
QueryRequest request,
Collection<? super ResourceResponse> results)
Searches for all JSON resources matching a user specified set of
criteria, and places the results in the provided collection.
|
QueryResponse |
AbstractConnectionWrapper.query(Context context,
QueryRequest request,
Collection<? super ResourceResponse> results)
Searches for all JSON resources matching a user specified set of
criteria, and places the results in the provided collection.
|
QueryResponse |
AbstractAsynchronousConnection.query(Context context,
QueryRequest request,
Collection<? super ResourceResponse> results) |
QueryResponse |
Connection.query(Context context,
QueryRequest request,
QueryResourceHandler handler)
Searches for all JSON resources matching a user specified set of
criteria, and returns a
Promise that will be completed with the
results of the search. |
QueryResponse |
AbstractConnectionWrapper.query(Context context,
QueryRequest request,
QueryResourceHandler handler)
Searches for all JSON resources matching a user specified set of
criteria, and returns a
Promise that will be completed with the
results of the search. |
QueryResponse |
AbstractAsynchronousConnection.query(Context context,
QueryRequest request,
QueryResourceHandler handler) |
Promise<QueryResponse,ResourceException> |
Connection.queryAsync(Context context,
QueryRequest request,
QueryResourceHandler handler)
Asynchronously searches for all JSON resources matching a user specified
set of criteria, and returns a
Promise that will be completed with the
results of the search. |
Promise<QueryResponse,ResourceException> |
AbstractConnectionWrapper.queryAsync(Context context,
QueryRequest request,
QueryResourceHandler handler)
Asynchronously searches for all JSON resources matching a user specified
set of criteria, and returns a
Promise that will be completed with the
results of the search. |
Promise<QueryResponse,ResourceException> |
MemoryBackend.queryCollection(Context context,
QueryRequest request,
QueryResourceHandler handler)
Searches the collection for all resources which match the query request
criteria. |
default Promise<QueryResponse,ResourceException> |
CollectionResourceProvider.queryCollection(Context context,
QueryRequest request,
QueryResourceHandler handler)
Searches the collection for all resources which match the query request
criteria. |
R |
RequestVisitor.visitQueryRequest(P p,
QueryRequest request)
Visits a query request.
|
Modifier and Type | Method and Description |
---|---|
Promise<QueryResponse,ResourceException> |
NotSupportedFilter.filterQuery(Context context,
QueryRequest queryRequest,
QueryResourceHandler queryResourceHandler,
RequestHandler requestHandler) |
Modifier and Type | Method and Description |
---|---|
Promise<QueryResponse,ResourceException> |
RecordProvider.queryCollection(Context context,
QueryRequest request,
QueryResourceHandler resourceHandler) |
Copyright 2011-2017 ForgeRock AS.