Package org.jboss.windup.tooling.rules
Interface RulesPath
-
- All Superinterfaces:
Serializable
public interface RulesPath extends Serializable
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classRulesPath.RulesPathType
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetLoadError()Contains a load error if there were any issues loading rules from this path.StringgetPath()Contains the path to the rules directory.RulesPath.RulesPathTypegetRulesPathType()Contains the type of rules path (for example, system provided vs user provided).intgetVersion()voidsetLoadError(String loadError)Contains a load error if there were any issues loading rules from this path.voidsetPath(String inputPath)Contains the path to the rules directory.voidsetRulesPathType(RulesPath.RulesPathType rulesPathType)Contains the type of rules path (for example, system provided vs user provided).voidsetVersion(int version)
-
-
-
Method Detail
-
getVersion
int getVersion()
-
setVersion
void setVersion(int version)
-
getPath
String getPath()
Contains the path to the rules directory.
-
setPath
void setPath(String inputPath)
Contains the path to the rules directory.
-
getRulesPathType
RulesPath.RulesPathType getRulesPathType()
Contains the type of rules path (for example, system provided vs user provided).
-
setRulesPathType
void setRulesPathType(RulesPath.RulesPathType rulesPathType)
Contains the type of rules path (for example, system provided vs user provided).
-
getLoadError
String getLoadError()
Contains a load error if there were any issues loading rules from this path.
-
setLoadError
void setLoadError(String loadError)
Contains a load error if there were any issues loading rules from this path.
-
-