Package org.jboss.windup.tooling
Interface ToolingXMLService
-
- All Superinterfaces:
Serializable
public interface ToolingXMLService extends Serializable
Contains tools for managing XML, for example generating schemas or serializingExecutionResultsto XML format.- Author:
- Jesse Sightler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidgenerateSchema(Path outputPath)Generates the XSD schema and outputs it to the provided path (full path to a filename).voidserializeResults(ExecutionResults results, OutputStream outputStream)Serialize the given results to the providedOutputStream.
-
-
-
Method Detail
-
serializeResults
void serializeResults(ExecutionResults results, OutputStream outputStream)
Serialize the given results to the providedOutputStream.
-
generateSchema
void generateSchema(Path outputPath)
Generates the XSD schema and outputs it to the provided path (full path to a filename).This will throw an exception if the path cannot be written to due to permissions or other IO errors. If anything exists at the path, it will be overwritten!
-
-