We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05012ea commit 08fad75Copy full SHA for 08fad75
pojo-to-raml/README.md
@@ -83,3 +83,11 @@ import java.util.UUID;
83
```
84
85
In this example, the UUID class is parsed by the NullClassParser class and it's type is changed to the basic "string" type.
86
+
87
+# Writing your own plugin
88
89
+The simplest way to do this is to package a jar with a META-INF/pojotoraml-plugin.properties file listing your plugins, as in
90
+this [example](src/main/resources/META-INF/pojotoraml-plugin.properties). In there you have one interface you have to
91
+[implement](src/main/java/org/raml/pojotoraml/RamlAdjuster.java). There is a helper interface in there should you not want to
92
+override all methods.
93
0 commit comments