Package org.opends.server.loggers
Class TextAuditLogPublisher
- java.lang.Object
-
- org.opends.server.loggers.AccessLogPublisher<T>
-
- org.opends.server.loggers.TextAuditLogPublisher
-
- All Implemented Interfaces:
Closeable,AutoCloseable,ConfigurationChangeListener<FileBasedAuditLogPublisherCfg>,LogPublisher<FileBasedAuditLogPublisherCfg>
public final class TextAuditLogPublisher extends AccessLogPublisher<T> implements ConfigurationChangeListener<FileBasedAuditLogPublisherCfg>
This class provides the implementation of the audit logger used by the directory server.
-
-
Constructor Summary
Constructors Constructor Description TextAuditLogPublisher()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ConfigChangeResultapplyConfigurationChange(FileBasedAuditLogPublisherCfg config)Applies the configuration changes to this change listener.protected voidbuildFilters()For startup access logger.voidclose()Close this publisher.protected voidclose0()Release any resources owned by the sub-implementation.DngetDN()Gets the DN of the configuration entry for this log publisher.protected StringgetTransactionId(RequestContext context)protected voidinitializeFilters(T config)Initializes the filter configuration.voidinitializeLogPublisher(FileBasedAuditLogPublisherCfg cfg, ServerContext serverContext)Initializes this publisher provider based on the information in the provided debug publisher configuration.booleanisConfigurationAcceptable(FileBasedAuditLogPublisherCfg configuration, List<LocalizableMessage> unacceptableReasons)Indicates whether the provided configuration is acceptable for this log publisher.booleanisConfigurationChangeAcceptable(FileBasedAuditLogPublisherCfg config, List<LocalizableMessage> unacceptableReasons)Indicates whether the proposed change to the configuration is acceptable to this change listener.protected booleanisConnectLoggable(ClientConnection c)Returnstrueif the provided client connect should be logged.protected booleanisDisconnectLoggable(ClientConnection c)Returnstrueif the provided client disconnect should be logged.protected booleanisFilterConfigurationAcceptable(T config, List<LocalizableMessage> unacceptableReasons)Perform any initialization required by the sub-implementation.protected booleanisRequestLoggable(RequestContext context, Request request)Returnstrueif the provided request should be logged.protected booleanisResponseLoggable(RequestContext context, Request request, Response response)Returnstrueif the provided response should be logged.protected booleanisTlsHandshakeLoggable(ConnectionContext c)Returnstrueif the provided TLS handshake should be logged.voidlogAddResult(RequestContext context, AddRequest request, Result result)Writes a message to the access logger with information about the add result.voidlogDeleteResult(RequestContext context, DeleteRequest request, Result result)Writes a message to the access logger with information about the delete result.voidlogModifyDnResult(RequestContext context, ModifyDnRequest request, Result result)Writes a message to the access logger with information about the modifyDN result.voidlogModifyResult(RequestContext context, ModifyRequest request, Result result)Writes a message to the access logger with information about the modify result.-
Methods inherited from class org.opends.server.loggers.AccessLogPublisher
logAbandonRequest, logAbandonResult, logAddRequest, logBindRequest, logBindResult, logCompareRequest, logCompareResult, logConnect, logDeleteRequest, logDisconnect, logExtendedRequest, logExtendedResult, logInvalidRequest, logInvalidResult, logModifyDnRequest, logModifyRequest, logSearchRequest, logSearchResult, logTlsHandshake, logUnbind
-
-
-
-
Method Detail
-
applyConfigurationChange
public ConfigChangeResult applyConfigurationChange(FileBasedAuditLogPublisherCfg config)
Description copied from interface:ConfigurationChangeListenerApplies the configuration changes to this change listener.- Specified by:
applyConfigurationChangein interfaceConfigurationChangeListener<FileBasedAuditLogPublisherCfg>- Parameters:
config- The new configuration containing the changes.- Returns:
- Returns information about the result of changing the configuration.
-
close0
protected void close0()
Release any resources owned by the sub-implementation.
-
initializeLogPublisher
public void initializeLogPublisher(FileBasedAuditLogPublisherCfg cfg, ServerContext serverContext) throws ConfigException, InitializationException
Description copied from interface:LogPublisherInitializes this publisher provider based on the information in the provided debug publisher configuration.- Specified by:
initializeLogPublisherin interfaceLogPublisher<FileBasedAuditLogPublisherCfg>- Parameters:
cfg- The publisher configuration that contains the information to use to initialize this publisher.serverContext- The server context.- Throws:
ConfigException- If an unrecoverable problem arises in the process of performing the initialization as a result of the server configuration.InitializationException- If a problem occurs during initialization that is not related to the server configuration.
-
isConfigurationAcceptable
public boolean isConfigurationAcceptable(FileBasedAuditLogPublisherCfg configuration, List<LocalizableMessage> unacceptableReasons)
Description copied from interface:LogPublisherIndicates whether the provided configuration is acceptable for this log publisher. It should be possible to call this method on an uninitialized log publisher instance in order to determine whether the log publisher would be able to use the provided configuration.- Specified by:
isConfigurationAcceptablein interfaceLogPublisher<FileBasedAuditLogPublisherCfg>- Overrides:
isConfigurationAcceptablein classAccessLogPublisher<FileBasedAuditLogPublisherCfg>- Parameters:
configuration- The log publisher configuration for which to make the determination.unacceptableReasons- A list that may be used to hold the reasons that the provided configuration is not acceptable.- Returns:
trueif the provided configuration is acceptable for this log publisher, orfalseif not.
-
isConfigurationChangeAcceptable
public boolean isConfigurationChangeAcceptable(FileBasedAuditLogPublisherCfg config, List<LocalizableMessage> unacceptableReasons)
Description copied from interface:ConfigurationChangeListenerIndicates whether the proposed change to the configuration is acceptable to this change listener.- Specified by:
isConfigurationChangeAcceptablein interfaceConfigurationChangeListener<FileBasedAuditLogPublisherCfg>- Parameters:
config- The new configuration containing the changes.unacceptableReasons- A list that can be used to hold messages about why the provided configuration is not acceptable.- Returns:
- Returns
trueif the proposed change is acceptable, orfalseif it is not.
-
logAddResult
public void logAddResult(RequestContext context, AddRequest request, Result result)
Description copied from class:AccessLogPublisherWrites a message to the access logger with information about the add result.The default implementation is to not log anything.
- Overrides:
logAddResultin classAccessLogPublisher<FileBasedAuditLogPublisherCfg>- Parameters:
context- the logging context for the requestrequest- the original add requestresult- the result to log
-
logDeleteResult
public void logDeleteResult(RequestContext context, DeleteRequest request, Result result)
Description copied from class:AccessLogPublisherWrites a message to the access logger with information about the delete result.The default implementation is to not log anything.
- Overrides:
logDeleteResultin classAccessLogPublisher<FileBasedAuditLogPublisherCfg>- Parameters:
context- the logging context for the requestrequest- the original delete requestresult- the result to log
-
logModifyResult
public void logModifyResult(RequestContext context, ModifyRequest request, Result result)
Description copied from class:AccessLogPublisherWrites a message to the access logger with information about the modify result.The default implementation is to not log anything.
- Overrides:
logModifyResultin classAccessLogPublisher<FileBasedAuditLogPublisherCfg>- Parameters:
context- the logging context for the requestrequest- the original modify requestresult- the result to log
-
logModifyDnResult
public void logModifyDnResult(RequestContext context, ModifyDnRequest request, Result result)
Description copied from class:AccessLogPublisherWrites a message to the access logger with information about the modifyDN result.The default implementation is to not log anything.
- Overrides:
logModifyDnResultin classAccessLogPublisher<FileBasedAuditLogPublisherCfg>- Parameters:
context- the logging context for the requestrequest- the original modifyDN requestresult- the result to log
-
getTransactionId
protected String getTransactionId(RequestContext context)
-
close
public final void close()
Description copied from interface:LogPublisherClose this publisher.
-
getDN
public final Dn getDN()
Description copied from interface:LogPublisherGets the DN of the configuration entry for this log publisher.- Returns:
- The configuration entry DN.
-
initializeFilters
protected final void initializeFilters(T config) throws ConfigException
Initializes the filter configuration. This method must be called by sub-classes during initialization.- Parameters:
config- The access publisher configuration that contains the information to use to initialize this access publisher.- Throws:
ConfigException- If an unrecoverable problem arises in the process of performing the initialization as a result of the server configuration.
-
isConnectLoggable
protected final boolean isConnectLoggable(ClientConnection c)
Returnstrueif the provided client connect should be logged.- Parameters:
c- The client connection.- Returns:
trueif the provided client connect should be logged.
-
isDisconnectLoggable
protected final boolean isDisconnectLoggable(ClientConnection c)
Returnstrueif the provided client disconnect should be logged.- Parameters:
c- The client connection.- Returns:
trueif the provided client disconnect should be logged.
-
isTlsHandshakeLoggable
protected final boolean isTlsHandshakeLoggable(ConnectionContext c)
Returnstrueif the provided TLS handshake should be logged.- Parameters:
c- the connection context- Returns:
trueif the provided TLS handshake should be logged.
-
isFilterConfigurationAcceptable
protected final boolean isFilterConfigurationAcceptable(T config, List<LocalizableMessage> unacceptableReasons)
Perform any initialization required by the sub-implementation.- Parameters:
config- The access publisher configuration that contains the information to use to initialize this access publisher.unacceptableReasons- A list that may be used to hold the reasons that the provided configuration is not acceptable.- Returns:
trueif the provided configuration is acceptable for this access log publisher, orfalseif not.
-
isRequestLoggable
protected final boolean isRequestLoggable(RequestContext context, Request request)
Returnstrueif the provided request should be logged.- Parameters:
context- the log contextrequest- the request to log- Returns:
trueif the provided request should be logged.
-
isResponseLoggable
protected final boolean isResponseLoggable(RequestContext context, Request request, Response response)
Returnstrueif the provided response should be logged.- Parameters:
context- the log contextrequest- the request to which the response correspondsresponse- the response to log- Returns:
trueif the provided response should be logged.
-
buildFilters
protected void buildFilters()
For startup access logger.
-
-