Interface FixedTimeLogRotationPolicyCfg
-
- All Superinterfaces:
Configuration
,LogRotationPolicyCfg
public interface FixedTimeLogRotationPolicyCfg extends LogRotationPolicyCfg
A server-side interface for querying Fixed Time Log Rotation Policy settings.Rotation policy based on a fixed time of day.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addFixedTimeChangeListener(ConfigurationChangeListener<FixedTimeLogRotationPolicyCfg> listener)
Register to be notified when this Fixed Time Log Rotation Policy is changed.Class<? extends FixedTimeLogRotationPolicyCfg>
configurationClass()
Gets the configuration class associated with this Fixed Time Log Rotation Policy.String
getJavaClass()
Gets the "java-class" property.SortedSet<String>
getTimeOfDay()
Gets the "time-of-day" property.void
removeFixedTimeChangeListener(ConfigurationChangeListener<FixedTimeLogRotationPolicyCfg> listener)
Deregister an existing Fixed Time Log Rotation Policy configuration change listener.-
Methods inherited from interface org.forgerock.opendj.config.Configuration
dn, name
-
Methods inherited from interface org.forgerock.opendj.server.config.server.LogRotationPolicyCfg
addChangeListener, removeChangeListener
-
-
-
-
Method Detail
-
configurationClass
Class<? extends FixedTimeLogRotationPolicyCfg> configurationClass()
Gets the configuration class associated with this Fixed Time Log Rotation Policy.- Specified by:
configurationClass
in interfaceConfiguration
- Specified by:
configurationClass
in interfaceLogRotationPolicyCfg
- Returns:
- Returns the configuration class associated with this Fixed Time Log Rotation Policy.
-
addFixedTimeChangeListener
void addFixedTimeChangeListener(ConfigurationChangeListener<FixedTimeLogRotationPolicyCfg> listener)
Register to be notified when this Fixed Time Log Rotation Policy is changed.- Parameters:
listener
- The Fixed Time Log Rotation Policy configuration change listener.
-
removeFixedTimeChangeListener
void removeFixedTimeChangeListener(ConfigurationChangeListener<FixedTimeLogRotationPolicyCfg> listener)
Deregister an existing Fixed Time Log Rotation Policy configuration change listener.- Parameters:
listener
- The Fixed Time Log Rotation Policy configuration change listener.
-
getJavaClass
String getJavaClass()
Gets the "java-class" property.Specifies the fully-qualified name of the Java class that provides the Fixed Time Log Rotation Policy implementation.
Default value:
org.opends.server.loggers.FixedTimeRotationPolicy
- Specified by:
getJavaClass
in interfaceLogRotationPolicyCfg
- Returns:
- Returns the value of the "java-class" property.
-
-