Class IfNot
- java.lang.Object
-
- org.apache.logging.log4j.core.appender.rolling.action.IfNot
-
- All Implemented Interfaces:
PathCondition
@Plugin(name="IfNot", category="Core", printObject=true) public final class IfNot extends Object implements PathCondition
WrapperPathCondition
that accepts objects that are rejected by the wrapped component filter.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
accept(Path baseDir, 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 IfNot
createNotCondition(PathCondition condition)
Create an IfNot PathCondition.PathCondition
getWrappedFilter()
String
toString()
-
-
-
Method Detail
-
getWrappedFilter
public PathCondition getWrappedFilter()
-
accept
public boolean accept(Path baseDir, 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:
baseDir
- 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
-
createNotCondition
@PluginFactory public static IfNot createNotCondition(@PluginElement("PathConditions") PathCondition condition)
Create an IfNot PathCondition.- Parameters:
condition
- The condition to negate.- Returns:
- An IfNot PathCondition.
-
-