Skip navigation links

Oracle® Fusion Middleware Java API Reference for Oracle Unified Directory
11g Release 2 (11.1.2.2.0)

E38583-02


oracle.oud.plugin
Interface RequestContext.Logger

Enclosing class:
RequestContext

public static interface RequestContext.Logger

This interface provides access to the logger to append log information in the access, debug and error logs.


Method Summary
 void logAddRequest(AddRequest addRequest)
          Logs the provided add request in the access log.
 void logAddRequestIntermediateMessage(AddRequest addRequest, java.util.Map<java.lang.String,java.lang.String> content)
          Logs the provided add request in the access log with the additional <key>=<value> pairs contained in the specified content.
 void logAddResult(AddRequest addRequest, Result result)
          Logs the provided add result in the access log.
 void logAddResultIntermediateMessage(AddRequest addRequest, Result result, java.util.Map<java.lang.String,java.lang.String> content)
          Logs the provided add result in the access log with the additional <key>=<value> pairs contained in the specified content.
 void logBindRequest(BindRequest bindRequest)
          Logs the provided bind request in the access log.
 void logBindRequestIntermediateMessage(BindRequest bindRequest, java.util.Map<java.lang.String,java.lang.String> content)
          Logs the provided bind request in the access log with the additional <key>=<value> pairs contained in the specified content.
 void logBindResult(BindRequest bindRequest, Result result)
          Logs the provided bind result in the access log.
 void logBindResultIntermediateMessage(BindRequest bindRequest, Result result, java.util.Map<java.lang.String,java.lang.String> content)
          Logs the provided bind result in the access log with the additional <key>=<value> pairs contained in the specified content.
 void logCompareRequest(CompareRequest compareRequest)
          Logs the provided compare request in the access log.
 void logCompareRequestIntermediateMessage(CompareRequest compareRequest, java.util.Map<java.lang.String,java.lang.String> content)
          Logs the provided compare request in the access log with the additional <key>=<value> pairs contained in the specified content.
 void logCompareResult(CompareRequest compareRequest, Result result)
          Logs the provided compare result in the access log.
 void logCompareResultIntermediateMessage(CompareRequest compareRequest, Result result, java.util.Map<java.lang.String,java.lang.String> content)
          Logs the provided compare result in the access log with the additional <key>=<value> pairs contained in the specified content.
 void logDebug(Message message)
          Logs the provided message in the debug log.
 void logDeleteRequest(DeleteRequest deleteRequest)
          Logs the provided delete request in the access log.
 void logDeleteRequestIntermediateMessage(DeleteRequest deleteRequest, java.util.Map<java.lang.String,java.lang.String> content)
          Logs the provided delete request in the access log with the additional <key>=<value> pairs contained in the specified content.
 void logDeleteResult(DeleteRequest deleteRequest, Result result)
          Logs the provided delete result in the access log.
 void logDeleteResultIntermediateMessage(DeleteRequest deleteRequest, Result result, java.util.Map<java.lang.String,java.lang.String> content)
          Logs the provided delete result in the access log with the additional <key>=<value> pairs contained in the specified content.
 void logError(Message message)
          Logs the provided message in the error log.
 void logExtendedRequest(ExtendedRequest extendedRequest)
          Logs the provided extended request in the access log.
 void logExtendedRequestIntermediateMessage(ExtendedRequest extendedRequest, java.util.Map<java.lang.String,java.lang.String> content)
          Logs the provided extended request in the access log with the additional <key>=<value> pairs contained in the specified content.
 void logExtendedResult(ExtendedRequest extendedRequest, Result result)
          Logs the provided extended result in the access log.
 void logExtendedResultIntermediateMessage(ExtendedRequest extendedRequest, Result result, java.util.Map<java.lang.String,java.lang.String> content)
          Logs the provided extended result in the access log with the additional <key>=<value> pairs contained in the specified content.
 void logModifyDNRequest(ModifyDNRequest modifyDnRequest)
          Logs the provided modify DN request in the access log.
 void logModifyDNRequestIntermediateMessage(ModifyDNRequest modifyDnRequest, java.util.Map<java.lang.String,java.lang.String> content)
          Logs the provided modify DN request in the access log with the additional <key>=<value> pairs contained in the specified content.
 void logModifyDNResult(ModifyDNRequest modifyDnRequest, Result result)
          Logs the provided modify DN result in the access log.
 void logModifyDNResultIntermediateMessage(ModifyDNRequest modifyDnRequest, Result result, java.util.Map<java.lang.String,java.lang.String> content)
          Logs the provided modify DN result in the access log with the additional <key>=<value> pairs contained in the specified content.
 void logModifyRequest(ModifyRequest modifyRequest)
          Logs the provided modify request in the access log.
 void logModifyRequestIntermediateMessage(ModifyRequest modifyRequest, java.util.Map<java.lang.String,java.lang.String> content)
          Logs the provided modify request in the access log with the additional <key>=<value> pairs contained in the specified content.
 void logModifyResult(ModifyRequest modifyRequest, Result result)
          Logs the provided modify result in the access log.
 void logModifyResultIntermediateMessage(ModifyRequest modifyRequest, Result result, java.util.Map<java.lang.String,java.lang.String> content)
          Logs the provided modify result in the access log with the additional <key>=<value> pairs contained in the specified content.
 void logSearchRequest(SearchRequest searchRequest)
          Logs the provided search request in the access log.
 void logSearchRequestIntermediateMessage(SearchRequest searchRequest, java.util.Map<java.lang.String,java.lang.String> content)
          Logs the provided search request in the access log with the additional <key>=<value> pairs contained in the specified content.
 void logSearchResult(SearchRequest searchRequest, Result result)
          Logs the provided search result in the access log.
 void logSearchResultIntermediateMessage(SearchRequest searchRequest, Result result, java.util.Map<java.lang.String,java.lang.String> content)
          Logs the provided search result in the access log with the additional <key>=<value> pairs contained in the specified content.

 

Method Detail

logAddRequest

void logAddRequest(AddRequest addRequest)
                   throws java.lang.IllegalArgumentException
Logs the provided add request in the access log.
Parameters:
addRequest - the add request to log in the access log.
Throws:
java.lang.IllegalArgumentException - if the provided request is invalid.

logAddResult

void logAddResult(AddRequest addRequest,
                  Result result)
                  throws java.lang.IllegalArgumentException
Logs the provided add result in the access log.
Parameters:
addRequest - the add request required to log information that relative to the request log (if any) of that result.
result - the add result to log in the access log.
Throws:
java.lang.IllegalArgumentException - if the provided request or result is invalid.

logAddRequestIntermediateMessage

void logAddRequestIntermediateMessage(AddRequest addRequest,
                                      java.util.Map<java.lang.String,java.lang.String> content)
                                      throws java.lang.IllegalArgumentException
Logs the provided add request in the access log with the additional <key>=<value> pairs contained in the specified content.
Parameters:
addRequest - the add request to log in the access log.
content - a list of <key>=<value> pairs
Throws:
java.lang.IllegalArgumentException - if the provided request is invalid.

logAddResultIntermediateMessage

void logAddResultIntermediateMessage(AddRequest addRequest,
                                     Result result,
                                     java.util.Map<java.lang.String,java.lang.String> content)
                                     throws java.lang.IllegalArgumentException
Logs the provided add result in the access log with the additional <key>=<value> pairs contained in the specified content.
Parameters:
addRequest - the add request required to log information that relative to the request log (if any) of that result.
result - the add result to log in the access log.
content - a list of <key>=<value> pairs
Throws:
java.lang.IllegalArgumentException - if the provided request or result is invalid.

logBindRequest

void logBindRequest(BindRequest bindRequest)
                    throws java.lang.IllegalArgumentException
Logs the provided bind request in the access log.
Parameters:
bindRequest - the bind request to log in the access log.
Throws:
java.lang.IllegalArgumentException - if the provided request is invalid.

logBindResult

void logBindResult(BindRequest bindRequest,
                   Result result)
                   throws java.lang.IllegalArgumentException
Logs the provided bind result in the access log.
Parameters:
bindRequest - the bind request required to log information that relative to the request log (if any) of that result.
result - the bind result to log in the access log.
Throws:
java.lang.IllegalArgumentException - if the provided request or result is invalid.

logBindRequestIntermediateMessage

void logBindRequestIntermediateMessage(BindRequest bindRequest,
                                       java.util.Map<java.lang.String,java.lang.String> content)
                                       throws java.lang.IllegalArgumentException
Logs the provided bind request in the access log with the additional <key>=<value> pairs contained in the specified content.
Parameters:
bindRequest - the bind request to log in the access log.
content - a list of <key>=<value> pairs
Throws:
java.lang.IllegalArgumentException - if the provided request is invalid.

logBindResultIntermediateMessage

void logBindResultIntermediateMessage(BindRequest bindRequest,
                                      Result result,
                                      java.util.Map<java.lang.String,java.lang.String> content)
                                      throws java.lang.IllegalArgumentException
Logs the provided bind result in the access log with the additional <key>=<value> pairs contained in the specified content.
Parameters:
bindRequest - the bind request required to log information that relative to the request log (if any) of that result.
result - the bind result to log in the access log.
content - a list of <key>=<value> pairs
Throws:
java.lang.IllegalArgumentException - if the provided request or result is invalid.

logCompareRequest

void logCompareRequest(CompareRequest compareRequest)
                       throws java.lang.IllegalArgumentException
Logs the provided compare request in the access log.
Parameters:
compareRequest - the compare request to log in the access log.
Throws:
java.lang.IllegalArgumentException - if the provided request is invalid.

logCompareResult

void logCompareResult(CompareRequest compareRequest,
                      Result result)
                      throws java.lang.IllegalArgumentException
Logs the provided compare result in the access log.
Parameters:
compareRequest - the compare request required to log information that relative to the request log (if any) of that result.
result - the compare result to log in the access log.
Throws:
java.lang.IllegalArgumentException - if the provided request or result is invalid.

logCompareRequestIntermediateMessage

void logCompareRequestIntermediateMessage(CompareRequest compareRequest,
                                          java.util.Map<java.lang.String,java.lang.String> content)
                                          throws java.lang.IllegalArgumentException
Logs the provided compare request in the access log with the additional <key>=<value> pairs contained in the specified content.
Parameters:
compareRequest - the compare request to log in the access log.
content - a list of <key>=<value> pairs
Throws:
java.lang.IllegalArgumentException - if the provided request is invalid.

logCompareResultIntermediateMessage

void logCompareResultIntermediateMessage(CompareRequest compareRequest,
                                         Result result,
                                         java.util.Map<java.lang.String,java.lang.String> content)
                                         throws java.lang.IllegalArgumentException
Logs the provided compare result in the access log with the additional <key>=<value> pairs contained in the specified content.
Parameters:
compareRequest - the compare request required to log information that relative to the request log (if any) of that result.
result - the compare result to log in the access log.
content - a list of <key>=<value> pairs
Throws:
java.lang.IllegalArgumentException - if the provided request or result is invalid.

logDeleteRequest

void logDeleteRequest(DeleteRequest deleteRequest)
                      throws java.lang.IllegalArgumentException
Logs the provided delete request in the access log.
Parameters:
deleteRequest - the delete request to log in the access log.
Throws:
java.lang.IllegalArgumentException - if the provided request is invalid.

logDeleteResult

void logDeleteResult(DeleteRequest deleteRequest,
                     Result result)
                     throws java.lang.IllegalArgumentException
Logs the provided delete result in the access log.
Parameters:
deleteRequest - the delete request required to log information that relative to the request log (if any) of that result.
result - the delete result to log in the access log.
Throws:
java.lang.IllegalArgumentException - if the provided request or result is invalid.

logDeleteRequestIntermediateMessage

void logDeleteRequestIntermediateMessage(DeleteRequest deleteRequest,
                                         java.util.Map<java.lang.String,java.lang.String> content)
                                         throws java.lang.IllegalArgumentException
Logs the provided delete request in the access log with the additional <key>=<value> pairs contained in the specified content.
Parameters:
deleteRequest - the delete request to log in the access log.
content - a list of <key>=<value> pairs
Throws:
java.lang.IllegalArgumentException - if the provided request is invalid.

logDeleteResultIntermediateMessage

void logDeleteResultIntermediateMessage(DeleteRequest deleteRequest,
                                        Result result,
                                        java.util.Map<java.lang.String,java.lang.String> content)
                                        throws java.lang.IllegalArgumentException
Logs the provided delete result in the access log with the additional <key>=<value> pairs contained in the specified content.
Parameters:
deleteRequest - the delete request required to log information that relative to the request log (if any) of that result.
result - the delete result to log in the access log.
content - a list of <key>=<value> pairs
Throws:
java.lang.IllegalArgumentException - if the provided request or result is invalid.

logExtendedRequest

void logExtendedRequest(ExtendedRequest extendedRequest)
                        throws java.lang.IllegalArgumentException
Logs the provided extended request in the access log.
Parameters:
extendedRequest - the extended request to log in the access log.
Throws:
java.lang.IllegalArgumentException - if the provided request is invalid.

logExtendedResult

void logExtendedResult(ExtendedRequest extendedRequest,
                       Result result)
                       throws java.lang.IllegalArgumentException
Logs the provided extended result in the access log.
Parameters:
extendedRequest - the extended request required to log information that relative to the request log (if any) of that result.
result - the extended result to log in the access log.
Throws:
java.lang.IllegalArgumentException - if the provided request or result is invalid.

logExtendedRequestIntermediateMessage

void logExtendedRequestIntermediateMessage(ExtendedRequest extendedRequest,
                                           java.util.Map<java.lang.String,java.lang.String> content)
                                           throws java.lang.IllegalArgumentException
Logs the provided extended request in the access log with the additional <key>=<value> pairs contained in the specified content.
Parameters:
extendedRequest - the extended request to log in the access log.
content - a list of <key>=<value> pairs
Throws:
java.lang.IllegalArgumentException - if the provided request is invalid.

logExtendedResultIntermediateMessage

void logExtendedResultIntermediateMessage(ExtendedRequest extendedRequest,
                                          Result result,
                                          java.util.Map<java.lang.String,java.lang.String> content)
                                          throws java.lang.IllegalArgumentException
Logs the provided extended result in the access log with the additional <key>=<value> pairs contained in the specified content.
Parameters:
extendedRequest - the extended request required to log information that relative to the request log (if any) of that result.
result - the extended result to log in the access log.
content - a list of <key>=<value> pairs
Throws:
java.lang.IllegalArgumentException - if the provided request or result is invalid.

logModifyRequest

void logModifyRequest(ModifyRequest modifyRequest)
                      throws java.lang.IllegalArgumentException
Logs the provided modify request in the access log.
Parameters:
modifyRequest - the modify request to log in the access log.
Throws:
java.lang.IllegalArgumentException - if the provided request is invalid.

logModifyResult

void logModifyResult(ModifyRequest modifyRequest,
                     Result result)
                     throws java.lang.IllegalArgumentException
Logs the provided modify result in the access log.
Parameters:
modifyRequest - the modify request required to log information that relative to the request log (if any) of that result.
result - the modify result to log in the access log.
Throws:
java.lang.IllegalArgumentException - if the provided request or result is invalid.

logModifyRequestIntermediateMessage

void logModifyRequestIntermediateMessage(ModifyRequest modifyRequest,
                                         java.util.Map<java.lang.String,java.lang.String> content)
                                         throws java.lang.IllegalArgumentException
Logs the provided modify request in the access log with the additional <key>=<value> pairs contained in the specified content.
Parameters:
modifyRequest - the modify request to log in the access log.
content - a list of <key>=<value> pairs
Throws:
java.lang.IllegalArgumentException - if the provided request is invalid.

logModifyResultIntermediateMessage

void logModifyResultIntermediateMessage(ModifyRequest modifyRequest,
                                        Result result,
                                        java.util.Map<java.lang.String,java.lang.String> content)
                                        throws java.lang.IllegalArgumentException
Logs the provided modify result in the access log with the additional <key>=<value> pairs contained in the specified content.
Parameters:
modifyRequest - the modify request required to log information that relative to the request log (if any) of that result.
result - the modify result to log in the access log.
content - a list of <key>=<value> pairs
Throws:
java.lang.IllegalArgumentException - if the provided request or result is invalid.

logModifyDNRequest

void logModifyDNRequest(ModifyDNRequest modifyDnRequest)
                        throws java.lang.IllegalArgumentException
Logs the provided modify DN request in the access log.
Parameters:
modifyDnRequest - the add request to log in the access log.
Throws:
java.lang.IllegalArgumentException - if the provided request is invalid.

logModifyDNResult

void logModifyDNResult(ModifyDNRequest modifyDnRequest,
                       Result result)
                       throws java.lang.IllegalArgumentException
Logs the provided modify DN result in the access log.
Parameters:
modifyDnRequest - the modify DN request required to log information that relative to the request log (if any) of that result.
result - the modify DN result to log in the access log.
Throws:
java.lang.IllegalArgumentException - if the provided request or result is invalid.

logModifyDNRequestIntermediateMessage

void logModifyDNRequestIntermediateMessage(ModifyDNRequest modifyDnRequest,
                                           java.util.Map<java.lang.String,java.lang.String> content)
                                           throws java.lang.IllegalArgumentException
Logs the provided modify DN request in the access log with the additional <key>=<value> pairs contained in the specified content.
Parameters:
modifyDnRequest - the modify DN request to log in the access log.
content - a list of <key>=<value> pairs
Throws:
java.lang.IllegalArgumentException - if the provided request is invalid.

logModifyDNResultIntermediateMessage

void logModifyDNResultIntermediateMessage(ModifyDNRequest modifyDnRequest,
                                          Result result,
                                          java.util.Map<java.lang.String,java.lang.String> content)
                                          throws java.lang.IllegalArgumentException
Logs the provided modify DN result in the access log with the additional <key>=<value> pairs contained in the specified content.
Parameters:
modifyDnRequest - the modify DN request required to log information that relative to the request log (if any) of that result.
result - the modify DN result to log in the access log.
content - a list of <key>=<value> pairs
Throws:
java.lang.IllegalArgumentException - if the provided request or result is invalid.

logSearchRequest

void logSearchRequest(SearchRequest searchRequest)
                      throws java.lang.IllegalArgumentException
Logs the provided search request in the access log.
Parameters:
searchRequest - the search request to log in the access log.
Throws:
java.lang.IllegalArgumentException - if the provided request is invalid.

logSearchResult

void logSearchResult(SearchRequest searchRequest,
                     Result result)
                     throws java.lang.IllegalArgumentException
Logs the provided search result in the access log.
Parameters:
searchRequest - the search request required to log information that relative to the request log (if any) of that result.
result - the search result to log in the access log.
Throws:
java.lang.IllegalArgumentException - if the provided request or result is invalid.

logSearchRequestIntermediateMessage

void logSearchRequestIntermediateMessage(SearchRequest searchRequest,
                                         java.util.Map<java.lang.String,java.lang.String> content)
                                         throws java.lang.IllegalArgumentException
Logs the provided search request in the access log with the additional <key>=<value> pairs contained in the specified content.
Parameters:
searchRequest - the search request to log in the access log.
content - a list of <key>=<value> pairs
Throws:
java.lang.IllegalArgumentException - if the provided request is invalid.

logSearchResultIntermediateMessage

void logSearchResultIntermediateMessage(SearchRequest searchRequest,
                                        Result result,
                                        java.util.Map<java.lang.String,java.lang.String> content)
                                        throws java.lang.IllegalArgumentException
Logs the provided search result in the access log with the additional <key>=<value> pairs contained in the specified content.
Parameters:
searchRequest - the search request required to log information that relative to the request log (if any) of that result.
result - the search result to log in the access log.
content - a list of <key>=<value> pairs
Throws:
java.lang.IllegalArgumentException - if the provided request or result is invalid.

logError

void logError(Message message)
Logs the provided message in the error log.
Parameters:
message - the message to log in the error log.

logDebug

void logDebug(Message message)
Logs the provided message in the debug log.
Parameters:
message - the message to log in the debug log.

Skip navigation links

Oracle® Fusion Middleware Java API Reference for Oracle Unified Directory
11g Release 2 (11.1.2.2.0)

E38583-02


Copyright © 2013, Oracle and/or its affiliates. All rights reserved.