Package org.jboss.windup.tooling
Interface ExecutionResults
-
- All Superinterfaces:
Serializable
public interface ExecutionResults extends Serializable
Contains the results of running Windup. This contains allClassifications,Hints, and information about how to find the reports that were produced.- Author:
- Jesse Sightler, Ondrej Zizka
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Classification>getClassifications()Contains allClassifications produced by this run of Windup.List<Hint>getHints()Contains allHints produced by this run of Windup.List<ReportLink>getReportLinks()Contains information about all of the reports produced by Windup and how to find them.StringgetWindupStopOnRequestMessage()A message about Windup stopping on request before finishing, if that happened; null otherwise.voidserializeToXML(Path path)Serialize the results to an XML file at the providedPath.
-
-
-
Method Detail
-
getWindupStopOnRequestMessage
String getWindupStopOnRequestMessage()
A message about Windup stopping on request before finishing, if that happened; null otherwise.
-
getClassifications
List<Classification> getClassifications()
Contains allClassifications produced by this run of Windup.
-
getReportLinks
List<ReportLink> getReportLinks()
Contains information about all of the reports produced by Windup and how to find them.
-
-