Package org.opends.server.loggers
Class FileNumberRetentionPolicy
- java.lang.Object
-
- org.opends.server.loggers.FileNumberRetentionPolicy
-
- All Implemented Interfaces:
ConfigurationChangeListener<FileCountLogRetentionPolicyCfg>
,RetentionPolicy<FileCountLogRetentionPolicyCfg>
public final class FileNumberRetentionPolicy extends Object implements RetentionPolicy<FileCountLogRetentionPolicyCfg>, ConfigurationChangeListener<FileCountLogRetentionPolicyCfg>
This class implements a retention policy based on the number of files. Files will be cleaned up based on the number of files on disk.
-
-
Constructor Summary
Constructors Constructor Description FileNumberRetentionPolicy()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ConfigChangeResult
applyConfigurationChange(FileCountLogRetentionPolicyCfg config)
Applies the configuration changes to this change listener.Path[]
deleteFiles(org.opends.server.loggers.FileNamingPolicy fileNamingPolicy)
Returns all files that should be deleted according to the policy.void
initializeLogRetentionPolicy(FileCountLogRetentionPolicyCfg config)
Initializes this log retention policy based on the information in the provided retention policy configuration.boolean
isConfigurationChangeAcceptable(FileCountLogRetentionPolicyCfg config, List<LocalizableMessage> unacceptableReasons)
Indicates whether the proposed change to the configuration is acceptable to this change listener.String
toString()
-
-
-
Method Detail
-
initializeLogRetentionPolicy
public void initializeLogRetentionPolicy(FileCountLogRetentionPolicyCfg config)
Description copied from interface:RetentionPolicy
Initializes this log retention policy based on the information in the provided retention policy configuration.- Specified by:
initializeLogRetentionPolicy
in interfaceRetentionPolicy<FileCountLogRetentionPolicyCfg>
- Parameters:
config
- The retention policy configuration that contains the information to use to initialize this policy.
-
isConfigurationChangeAcceptable
public boolean isConfigurationChangeAcceptable(FileCountLogRetentionPolicyCfg config, List<LocalizableMessage> unacceptableReasons)
Description copied from interface:ConfigurationChangeListener
Indicates whether the proposed change to the configuration is acceptable to this change listener.- Specified by:
isConfigurationChangeAcceptable
in interfaceConfigurationChangeListener<FileCountLogRetentionPolicyCfg>
- Parameters:
config
- The new configuration containing the changes.unacceptableReasons
- A list that can be used to hold messages about why the provided configuration is not acceptable.- Returns:
- Returns
true
if the proposed change is acceptable, orfalse
if it is not.
-
applyConfigurationChange
public ConfigChangeResult applyConfigurationChange(FileCountLogRetentionPolicyCfg config)
Description copied from interface:ConfigurationChangeListener
Applies the configuration changes to this change listener.- Specified by:
applyConfigurationChange
in interfaceConfigurationChangeListener<FileCountLogRetentionPolicyCfg>
- Parameters:
config
- The new configuration containing the changes.- Returns:
- Returns information about the result of changing the configuration.
-
deleteFiles
public Path[] deleteFiles(org.opends.server.loggers.FileNamingPolicy fileNamingPolicy) throws IOException
Description copied from interface:RetentionPolicy
Returns all files that should be deleted according to the policy.- Specified by:
deleteFiles
in interfaceRetentionPolicy<FileCountLogRetentionPolicyCfg>
- Parameters:
fileNamingPolicy
- The naming policy used generate the log file names.- Returns:
- An array of files that should be deleted according to the policy or
null
if an error occurred while obtaining the file list. - Throws:
IOException
- If an error occurs while obtaining a list of files to delete.
-
-