public abstract class AbstractRequireFiles extends AbstractStandardEnforcerRule
Constructor and Description |
---|
AbstractRequireFiles() |
Modifier and Type | Method and Description |
---|---|
void |
execute(EnforcerRuleHelper helper)
This is the interface into the rule.
|
String |
getCacheId()
If the rule is to be cached, this id is used as part of the key.
|
File[] |
getFiles() |
boolean |
isAllowNulls() |
boolean |
isCacheable()
This method tells the enforcer if the rule results may be cached.
|
boolean |
isResultValid(EnforcerRule cachedRule)
If the rule is cacheable and the same id is found in the cache, the stored results are passed to this method to
allow double checking of the results.
|
void |
setAllowNulls(boolean allowNulls) |
void |
setFiles(File[] files) |
getLevel, getMessage, setLevel, setMessage
public AbstractRequireFiles()
public void execute(EnforcerRuleHelper helper) throws EnforcerRuleException
EnforcerRule
helper
- The helper provides access to the log, MavenSession and has
helpers to get common components. It is also able to lookup components
by class name.EnforcerRuleException
- the enforcer rule exceptionpublic String getCacheId()
EnforcerRule
public boolean isCacheable()
EnforcerRule
true
if rule is cacheablepublic boolean isResultValid(EnforcerRule cachedRule)
EnforcerRule
cachedRule
- the last cached instance of the rule. This is to be used by the rule to
potentially determine if the results are still valid (ie if the configuration has been overridden)true
if the stored results are valid for the same id.public boolean isAllowNulls()
public void setAllowNulls(boolean allowNulls)
Copyright © 2007–2021 The Apache Software Foundation. All rights reserved.