File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
# ABYSS SPEC TRANSFORMER
2
2
3
- This application generates an ` OpenAPI ` definition file based on 3.0 specification from a ` WSDL ` which gives as a URL or directory path.
3
+ This application transforms provided ` WSDL ` into an ` OpenAPI v3 ` spec yaml file. WSDL should be provided via path, URI or String
4
+
4
5
An example is below
5
6
6
7
** Input**
@@ -104,13 +105,18 @@ An example is below
104
105
</wsdl : definitions >
105
106
```
106
107
107
- ** Output**
108
+ > credit to http://www.thomas-bayer.com/
109
+
110
+
111
+ ** Usage**
108
112
109
113
``` java
110
114
String sourcePath = " http://thomas-bayer.com/axis2/services/BLZService?wsdl" ;
111
115
return new OpenAPITransformer (). transform(sourcePath);
112
116
```
113
117
118
+ ** Output**
119
+
114
120
``` yaml
115
121
openapi : 3.0.1
116
122
info :
You can’t perform that action at this time.
0 commit comments