Class IfLastModified
- java.lang.Object
-
- org.apache.logging.log4j.core.appender.rolling.action.IfLastModified
-
- All Implemented Interfaces:
PathCondition
@Plugin(name="IfLastModified", category="Core", printObject=true) public final class IfLastModified extends Object implements PathCondition
PathCondition that accepts paths that are older than the specified duration.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
accept(Path basePath, Path relativePath, BasicFileAttributes attrs)
Returnstrue
if the specified candidate path should be deleted,false
otherwise.void
beforeFileTreeWalk()
Invoked before a new file tree walk is started.static IfLastModified
createAgeCondition(Duration age, PathCondition... nestedConditions)
Create an IfLastModified condition.Duration
getAge()
List<PathCondition>
getNestedConditions()
String
toString()
-
-
-
Method Detail
-
getAge
public Duration getAge()
-
getNestedConditions
public List<PathCondition> getNestedConditions()
-
accept
public boolean accept(Path basePath, Path relativePath, BasicFileAttributes attrs)
Description copied from interface:PathCondition
Returnstrue
if the specified candidate path should be deleted,false
otherwise.- Specified by:
accept
in interfacePathCondition
- Parameters:
basePath
- the directory from where to start scanning for deletion candidate filesrelativePath
- the candidate for deletion. This path is relative to the baseDir.attrs
- attributes of the candidate path- Returns:
- whether the candidate path should be deleted
-
beforeFileTreeWalk
public void beforeFileTreeWalk()
Description copied from interface:PathCondition
Invoked before a new file tree walk is started. Stateful PathConditions can reset their state when this method is called.- Specified by:
beforeFileTreeWalk
in interfacePathCondition
-
createAgeCondition
@PluginFactory public static IfLastModified createAgeCondition(@PluginAttribute("age") Duration age, @PluginElement("PathConditions") PathCondition... nestedConditions)
Create an IfLastModified condition.- Parameters:
age
- The path age that is accepted by this condition. Must be a valid Duration.nestedConditions
- nested conditions to evaluate if this condition accepts a path- Returns:
- An IfLastModified condition.
-
-