Interface HTTPAccessLogPublisherCfgClient
-
- All Superinterfaces:
ConfigurationClient,LogPublisherCfgClient
- All Known Subinterfaces:
CsvFileHTTPAccessLogPublisherCfgClient,ExternalHTTPAccessLogPublisherCfgClient,FileBasedHTTPAccessLogPublisherCfgClient,JsonFileHTTPAccessLogPublisherCfgClient
public interface HTTPAccessLogPublisherCfgClient extends LogPublisherCfgClient
A client-side interface for reading and modifying 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 ManagedObjectDefinition<? extends HTTPAccessLogPublisherCfgClient,? extends HTTPAccessLogPublisherCfg>definition()Get the configuration definition associated with this HTTP Access Log Publisher.StringgetJavaClass()Gets the "java-class" property.voidsetJavaClass(String value)Sets the "java-class" property.-
Methods inherited from interface org.forgerock.opendj.config.ConfigurationClient
commit, properties
-
Methods inherited from interface org.forgerock.opendj.server.config.client.LogPublisherCfgClient
isEnabled, setEnabled
-
-
-
-
Method Detail
-
definition
ManagedObjectDefinition<? extends HTTPAccessLogPublisherCfgClient,? extends HTTPAccessLogPublisherCfg> definition()
Get the configuration definition associated with this HTTP Access Log Publisher.- Specified by:
definitionin interfaceConfigurationClient- Specified by:
definitionin interfaceLogPublisherCfgClient- Returns:
- Returns the configuration definition associated with this HTTP Access Log Publisher.
-
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 interfaceLogPublisherCfgClient- Returns:
- Returns the value of the "java-class" property.
-
setJavaClass
void setJavaClass(String value) throws PropertyException
Sets the "java-class" property.The fully-qualified name of the Java class that provides the HTTP Access Log Publisher implementation.
- Specified by:
setJavaClassin interfaceLogPublisherCfgClient- Parameters:
value- The value of the "java-class" property.- Throws:
PropertyException- If the new value is invalid.
-
-