Interface HttpAccessLogPublisherCfg
- All Superinterfaces:
Configuration,LogPublisherCfg
- All Known Subinterfaces:
CsvFileHttpAccessLogPublisherCfg,ExternalHttpAccessLogPublisherCfg,FileBasedHttpAccessLogPublisherCfg,JsonFileHttpAccessLogPublisherCfg
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
Modifier and TypeMethodDescriptionvoidRegister to be notified when this HTTP Access Log Publisher is changed.Class<? extends HttpAccessLogPublisherCfg>Gets the configuration class associated with this HTTP Access Log Publisher.Gets the "java-class" property.voidDeregister an existing HTTP Access Log Publisher configuration change listener.Methods inherited from interface org.forgerock.opendj.config.Configuration
dn, nameMethods inherited from interface org.forgerock.opendj.server.config.server.LogPublisherCfg
addChangeListener, isEnabled, removeChangeListener
-
Method Details
-
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
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.
Default value:
org.opends.server.loggers.HTTPAccessLogPublisher- Specified by:
getJavaClassin interfaceLogPublisherCfg- Returns:
- Returns the value of the "java-class" property.
-