Interface HTTPAccessLogPublisherCfg
-
- All Superinterfaces:
Configuration,LogPublisherCfg
- All Known Subinterfaces:
CsvFileHTTPAccessLogPublisherCfg,ExternalHTTPAccessLogPublisherCfg,FileBasedHTTPAccessLogPublisherCfg,JsonFileHTTPAccessLogPublisherCfg
public interface HTTPAccessLogPublisherCfg extends LogPublisherCfg
A server-side interface for querying HTTP Access Log Publisher settings.HTTP Access Log Publishers are responsible for distributing HTTP access log messages from the HTTP access logger to a destination.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddHTTPAccessChangeListener(ConfigurationChangeListener<HTTPAccessLogPublisherCfg> listener)Register to be notified when this HTTP Access Log Publisher is changed.Class<? extends HTTPAccessLogPublisherCfg>configurationClass()Gets the configuration class associated with this HTTP Access Log Publisher.StringgetJavaClass()Gets the "java-class" property.voidremoveHTTPAccessChangeListener(ConfigurationChangeListener<HTTPAccessLogPublisherCfg> listener)Deregister an existing HTTP Access Log Publisher configuration change listener.-
Methods inherited from interface org.forgerock.opendj.config.Configuration
dn, name
-
Methods inherited from interface org.forgerock.opendj.server.config.server.LogPublisherCfg
addChangeListener, isEnabled, removeChangeListener
-
-
-
-
Method Detail
-
configurationClass
Class<? extends HTTPAccessLogPublisherCfg> configurationClass()
Gets the configuration class associated with this HTTP Access Log Publisher.- Specified by:
configurationClassin interfaceConfiguration- Specified by:
configurationClassin interfaceLogPublisherCfg- Returns:
- Returns the configuration class associated with this HTTP Access Log Publisher.
-
addHTTPAccessChangeListener
void addHTTPAccessChangeListener(ConfigurationChangeListener<HTTPAccessLogPublisherCfg> listener)
Register to be notified when this HTTP Access Log Publisher is changed.- Parameters:
listener- The HTTP Access Log Publisher configuration change listener.
-
removeHTTPAccessChangeListener
void removeHTTPAccessChangeListener(ConfigurationChangeListener<HTTPAccessLogPublisherCfg> listener)
Deregister an existing HTTP Access Log Publisher configuration change listener.- Parameters:
listener- The HTTP Access Log Publisher configuration change listener.
-
getJavaClass
String getJavaClass()
Gets the "java-class" property.The fully-qualified name of the Java class that provides the HTTP Access Log Publisher implementation.
- Specified by:
getJavaClassin interfaceLogPublisherCfg- Returns:
- Returns the value of the "java-class" property.
-
-