org.opends.server.admin.std.server
Interface AccessLogPublisherCfg

All Superinterfaces:
Configuration, LogPublisherCfg
All Known Subinterfaces:
FileBasedAccessLogPublisherCfg

public interface AccessLogPublisherCfg
extends LogPublisherCfg

A server-side interface for querying Access Log Publisher settings.

Access Log Publishers are responsible for distributing access log messages from the access logger to a destination.


Method Summary
 void addAccessChangeListener(ConfigurationChangeListener<AccessLogPublisherCfg> listener)
          Register to be notified when this Access Log Publisher is changed.
 java.lang.Class<? extends AccessLogPublisherCfg> configurationClass()
          Gets the configuration class associated with this Access Log Publisher.
 java.lang.String getJavaClass()
          Gets the "java-class" property.
 boolean isSuppressInternalOperations()
          Gets the "suppress-internal-operations" property.
 boolean isSuppressSynchronizationOperations()
          Gets the "suppress-synchronization-operations" property.
 void removeAccessChangeListener(ConfigurationChangeListener<AccessLogPublisherCfg> listener)
          Deregister an existing Access Log Publisher configuration change listener.
 
Methods inherited from interface org.opends.server.admin.std.server.LogPublisherCfg
addChangeListener, isEnabled, removeChangeListener
 
Methods inherited from interface org.opends.server.admin.Configuration
dn
 

Method Detail

configurationClass

java.lang.Class<? extends AccessLogPublisherCfg> configurationClass()
Gets the configuration class associated with this Access Log Publisher.

Specified by:
configurationClass in interface Configuration
Specified by:
configurationClass in interface LogPublisherCfg
Returns:
Returns the configuration class associated with this Access Log Publisher.

addAccessChangeListener

void addAccessChangeListener(ConfigurationChangeListener<AccessLogPublisherCfg> listener)
Register to be notified when this Access Log Publisher is changed.

Parameters:
listener - The Access Log Publisher configuration change listener.

removeAccessChangeListener

void removeAccessChangeListener(ConfigurationChangeListener<AccessLogPublisherCfg> listener)
Deregister an existing Access Log Publisher configuration change listener.

Parameters:
listener - The Access Log Publisher configuration change listener.

getJavaClass

java.lang.String getJavaClass()
Gets the "java-class" property.

The fully-qualified name of the Java class that provides the Access Log Publisher implementation.

Returns:
Returns the value of the "java-class" property.

isSuppressInternalOperations

boolean isSuppressInternalOperations()
Gets the "suppress-internal-operations" property.

Indicates whether internal operations (for example, operations that are initiated by plugins) should be logged along with the operations that are requested by users.

Returns:
Returns the value of the "suppress-internal-operations" property.

isSuppressSynchronizationOperations

boolean isSuppressSynchronizationOperations()
Gets the "suppress-synchronization-operations" property.

Indicates whether access messages that are generated by synchronization operations should be suppressed.

Returns:
Returns the value of the "suppress-synchronization-operations" property.