blob: a98557dccb51e077e75240c0616743be97d62db6 [file] [log] [blame]
Sahil Lele372d1f32015-07-31 15:01:41 -07001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.maven;
17
18import com.fasterxml.jackson.databind.ObjectMapper;
19import com.fasterxml.jackson.databind.node.ArrayNode;
20import com.fasterxml.jackson.databind.node.ObjectNode;
andreafaa2c4b2015-11-16 13:48:39 -080021import com.google.common.base.Charsets;
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070022import com.google.common.io.ByteStreams;
23import com.google.common.io.Files;
Sahil Lele372d1f32015-07-31 15:01:41 -070024import com.thoughtworks.qdox.JavaProjectBuilder;
25import com.thoughtworks.qdox.model.DocletTag;
26import com.thoughtworks.qdox.model.JavaAnnotation;
27import com.thoughtworks.qdox.model.JavaClass;
28import com.thoughtworks.qdox.model.JavaMethod;
29import com.thoughtworks.qdox.model.JavaParameter;
30import com.thoughtworks.qdox.model.JavaType;
31import org.apache.maven.plugin.AbstractMojo;
32import org.apache.maven.plugin.MojoExecutionException;
33import org.apache.maven.plugins.annotations.LifecyclePhase;
34import org.apache.maven.plugins.annotations.Mojo;
35import org.apache.maven.plugins.annotations.Parameter;
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070036import org.apache.maven.project.MavenProject;
Sahil Lele372d1f32015-07-31 15:01:41 -070037
38import java.io.File;
39import java.io.FileWriter;
40import java.io.IOException;
41import java.io.PrintWriter;
42import java.util.HashMap;
43import java.util.Map;
44import java.util.Optional;
45
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070046import static com.google.common.base.Strings.isNullOrEmpty;
47
Sahil Lele372d1f32015-07-31 15:01:41 -070048/**
49 * Produces ONOS Swagger api-doc.
50 */
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070051@Mojo(name = "swagger", defaultPhase = LifecyclePhase.GENERATE_SOURCES)
Sahil Lele372d1f32015-07-31 15:01:41 -070052public class OnosSwaggerMojo extends AbstractMojo {
53 private final ObjectMapper mapper = new ObjectMapper();
54
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070055 private static final String JSON_FILE = "swagger.json";
56 private static final String GEN_SRC = "generated-sources";
57 private static final String REG_SRC = "registrator.javat";
58
Sahil Lele372d1f32015-07-31 15:01:41 -070059 private static final String PATH = "javax.ws.rs.Path";
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070060 private static final String PATH_PARAM = "javax.ws.rs.PathParam";
61 private static final String QUERY_PARAM = "javax.ws.rs.QueryParam";
Sahil Lele372d1f32015-07-31 15:01:41 -070062 private static final String POST = "javax.ws.rs.POST";
63 private static final String GET = "javax.ws.rs.GET";
64 private static final String PUT = "javax.ws.rs.PUT";
65 private static final String DELETE = "javax.ws.rs.DELETE";
66 private static final String PRODUCES = "javax.ws.rs.Produces";
67 private static final String CONSUMES = "javax.ws.rs.Consumes";
68 private static final String JSON = "MediaType.APPLICATION_JSON";
andrea863201a2015-11-24 13:18:30 -080069 private static final String OCTET_STREAM = "MediaType.APPLICATION_OCTET_STREAM";
Sahil Lele372d1f32015-07-31 15:01:41 -070070
71 /**
72 * The directory where the generated catalogue file will be put.
73 */
74 @Parameter(defaultValue = "${basedir}")
75 protected File srcDirectory;
76
77 /**
78 * The directory where the generated catalogue file will be put.
79 */
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070080 @Parameter(defaultValue = "${project.build.directory}")
Sahil Lele372d1f32015-07-31 15:01:41 -070081 protected File dstDirectory;
82
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070083 /**
84 * REST API web-context
85 */
86 @Parameter(defaultValue = "${web.context}")
87 protected String webContext;
88
89 /**
90 * REST API version
91 */
92 @Parameter(defaultValue = "${api.version}")
93 protected String apiVersion;
94
95 /**
96 * REST API description
97 */
98 @Parameter(defaultValue = "${api.description}")
99 protected String apiDescription;
100
101 /**
102 * REST API title
103 */
104 @Parameter(defaultValue = "${api.title}")
105 protected String apiTitle;
106
107 /**
108 * REST API title
109 */
110 @Parameter(defaultValue = "${api.package}")
111 protected String apiPackage;
112
113 /**
114 * Maven project
115 */
116 @Parameter(defaultValue = "${project}")
117 protected MavenProject project;
118
119
Sahil Lele372d1f32015-07-31 15:01:41 -0700120 @Override
121 public void execute() throws MojoExecutionException {
Sahil Lele372d1f32015-07-31 15:01:41 -0700122 try {
123 JavaProjectBuilder builder = new JavaProjectBuilder();
124 builder.addSourceTree(new File(srcDirectory, "src/main/java"));
125
126 ObjectNode root = initializeRoot();
Sahil Lele372d1f32015-07-31 15:01:41 -0700127 ArrayNode tags = mapper.createArrayNode();
Sahil Lele372d1f32015-07-31 15:01:41 -0700128 ObjectNode paths = mapper.createObjectNode();
andreafaa2c4b2015-11-16 13:48:39 -0800129 ObjectNode definitions = mapper.createObjectNode();
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700130
131 root.set("tags", tags);
Sahil Lele372d1f32015-07-31 15:01:41 -0700132 root.set("paths", paths);
andreafaa2c4b2015-11-16 13:48:39 -0800133 root.set("definitions", definitions);
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700134
andreafaa2c4b2015-11-16 13:48:39 -0800135 builder.getClasses().forEach(jc -> processClass(jc, paths, tags, definitions));
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700136
137 if (paths.size() > 0) {
138 getLog().info("Generating ONOS REST API documentation...");
139 genCatalog(root);
140
141 if (!isNullOrEmpty(apiPackage)) {
142 genRegistrator();
143 }
144 }
145
146 project.addCompileSourceRoot(new File(dstDirectory, GEN_SRC).getPath());
147
Sahil Lele372d1f32015-07-31 15:01:41 -0700148 } catch (Exception e) {
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700149 getLog().warn("Unable to generate ONOS REST API documentation", e);
Sahil Lele372d1f32015-07-31 15:01:41 -0700150 throw e;
151 }
152 }
153
154 // initializes top level root with Swagger required specifications
155 private ObjectNode initializeRoot() {
156 ObjectNode root = mapper.createObjectNode();
157 root.put("swagger", "2.0");
158 ObjectNode info = mapper.createObjectNode();
159 root.set("info", info);
Sahil Lele372d1f32015-07-31 15:01:41 -0700160
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700161 root.put("basePath", webContext);
162 info.put("version", apiVersion);
163 info.put("title", apiTitle);
164 info.put("description", apiDescription);
Sahil Lele372d1f32015-07-31 15:01:41 -0700165
166 ArrayNode produces = mapper.createArrayNode();
167 produces.add("application/json");
168 root.set("produces", produces);
169
170 ArrayNode consumes = mapper.createArrayNode();
171 consumes.add("application/json");
172 root.set("consumes", consumes);
173
174 return root;
175 }
176
177 // Checks whether javaClass has a path tag associated with it and if it does
178 // processes its methods and creates a tag for the class on the root
andreafaa2c4b2015-11-16 13:48:39 -0800179 void processClass(JavaClass javaClass, ObjectNode paths, ArrayNode tags, ObjectNode definitions) {
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700180 // If the class does not have a Path tag then ignore it
181 JavaAnnotation annotation = getPathAnnotation(javaClass);
Sahil Lele372d1f32015-07-31 15:01:41 -0700182 if (annotation == null) {
183 return;
184 }
185
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700186 String path = getPath(annotation);
187 if (path == null) {
188 return;
Sahil Lele372d1f32015-07-31 15:01:41 -0700189 }
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700190
191 String resourcePath = "/" + path;
192 String tagPath = path.isEmpty() ? "/" : path;
193
194 // Create tag node for this class.
195 ObjectNode tagObject = mapper.createObjectNode();
196 tagObject.put("name", tagPath);
Sahil Lele372d1f32015-07-31 15:01:41 -0700197 if (javaClass.getComment() != null) {
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700198 tagObject.put("description", shortText(javaClass.getComment()));
Sahil Lele372d1f32015-07-31 15:01:41 -0700199 }
200 tags.add(tagObject);
201
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700202 // Create an array node add to all methods from this class.
Sahil Lele372d1f32015-07-31 15:01:41 -0700203 ArrayNode tagArray = mapper.createArrayNode();
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700204 tagArray.add(tagPath);
Sahil Lele372d1f32015-07-31 15:01:41 -0700205
andreafaa2c4b2015-11-16 13:48:39 -0800206 processAllMethods(javaClass, resourcePath, paths, tagArray, definitions);
Sahil Lele372d1f32015-07-31 15:01:41 -0700207 }
208
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700209 private JavaAnnotation getPathAnnotation(JavaClass javaClass) {
210 Optional<JavaAnnotation> optional = javaClass.getAnnotations()
211 .stream().filter(a -> a.getType().getName().equals(PATH)).findAny();
212 return optional.isPresent() ? optional.get() : null;
213 }
214
Sahil Lele372d1f32015-07-31 15:01:41 -0700215 // Checks whether a class's methods are REST methods and then places all the
216 // methods under a specific path into the paths node
217 private void processAllMethods(JavaClass javaClass, String resourcePath,
andreafaa2c4b2015-11-16 13:48:39 -0800218 ObjectNode paths, ArrayNode tagArray, ObjectNode definitions) {
Sahil Lele372d1f32015-07-31 15:01:41 -0700219 // map of the path to its methods represented by an ObjectNode
220 Map<String, ObjectNode> pathMap = new HashMap<>();
221
222 javaClass.getMethods().forEach(javaMethod -> {
223 javaMethod.getAnnotations().forEach(annotation -> {
224 String name = annotation.getType().getName();
225 if (name.equals(POST) || name.equals(GET) || name.equals(DELETE) || name.equals(PUT)) {
226 // substring(12) removes "javax.ws.rs."
227 String method = annotation.getType().toString().substring(12).toLowerCase();
andreafaa2c4b2015-11-16 13:48:39 -0800228 processRestMethod(javaMethod, method, pathMap, resourcePath, tagArray, definitions);
Sahil Lele372d1f32015-07-31 15:01:41 -0700229 }
230 });
231 });
232
233 // for each path add its methods to the path node
234 for (Map.Entry<String, ObjectNode> entry : pathMap.entrySet()) {
235 paths.set(entry.getKey(), entry.getValue());
236 }
237
238
239 }
240
241 private void processRestMethod(JavaMethod javaMethod, String method,
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700242 Map<String, ObjectNode> pathMap,
andreafaa2c4b2015-11-16 13:48:39 -0800243 String resourcePath, ArrayNode tagArray, ObjectNode definitions) {
Sahil Lele372d1f32015-07-31 15:01:41 -0700244 String fullPath = resourcePath, consumes = "", produces = "",
245 comment = javaMethod.getComment();
Andrea Campanella10c4adc2015-12-03 15:27:54 -0800246 DocletTag tag = javaMethod.getTagByName("onos.rsModel");
Sahil Lele372d1f32015-07-31 15:01:41 -0700247 for (JavaAnnotation annotation : javaMethod.getAnnotations()) {
248 String name = annotation.getType().getName();
249 if (name.equals(PATH)) {
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700250 fullPath = resourcePath + "/" + getPath(annotation);
251 fullPath = fullPath.replaceFirst("^//", "/");
Sahil Lele372d1f32015-07-31 15:01:41 -0700252 }
253 if (name.equals(CONSUMES)) {
254 consumes = getIOType(annotation);
255 }
256 if (name.equals(PRODUCES)) {
257 produces = getIOType(annotation);
258 }
259 }
260 ObjectNode methodNode = mapper.createObjectNode();
261 methodNode.set("tags", tagArray);
262
263 addSummaryDescriptions(methodNode, comment);
andreafaa2c4b2015-11-16 13:48:39 -0800264 addJsonSchemaDefinition(definitions, tag);
andreafaa2c4b2015-11-16 13:48:39 -0800265
266 processParameters(javaMethod, methodNode, method, tag);
Sahil Lele372d1f32015-07-31 15:01:41 -0700267
268 processConsumesProduces(methodNode, "consumes", consumes);
269 processConsumesProduces(methodNode, "produces", produces);
andreafaa2c4b2015-11-16 13:48:39 -0800270 if (tag == null || ((method.toLowerCase().equals("post") || method.toLowerCase().equals("put"))
271 && !(tag.getParameters().size() > 1))) {
272 addResponses(methodNode, tag, false);
273 } else {
274 addResponses(methodNode, tag, true);
275 }
Sahil Lele372d1f32015-07-31 15:01:41 -0700276
277 ObjectNode operations = pathMap.get(fullPath);
278 if (operations == null) {
279 operations = mapper.createObjectNode();
280 operations.set(method, methodNode);
281 pathMap.put(fullPath, operations);
282 } else {
283 operations.set(method, methodNode);
284 }
285 }
286
andreafaa2c4b2015-11-16 13:48:39 -0800287 private void addJsonSchemaDefinition(ObjectNode definitions, DocletTag tag) {
288 File definitionsDirectory = new File(srcDirectory + "/src/main/resources/definitions");
289 if (tag != null) {
290 tag.getParameters().stream().forEach(param -> {
291 try {
292 File config = new File(definitionsDirectory.getAbsolutePath() + "/"
293 + param + ".json");
294 String lines = Files.readLines(config, Charsets.UTF_8).stream().reduce((t, u) -> t + u).
295 get();
Andrea Campanellae22731b2015-11-30 10:25:04 -0800296 lines = lines.replaceAll("\\s+","");
andreafaa2c4b2015-11-16 13:48:39 -0800297 definitions.putPOJO(param, lines);
298 } catch (IOException e) {
299 e.printStackTrace();
300 }
301 });
302
303 }
304 }
305
Sahil Lele372d1f32015-07-31 15:01:41 -0700306 private void processConsumesProduces(ObjectNode methodNode, String type, String io) {
307 if (!io.equals("")) {
308 ArrayNode array = mapper.createArrayNode();
309 methodNode.set(type, array);
310 array.add(io);
311 }
312 }
313
314 private void addSummaryDescriptions(ObjectNode methodNode, String comment) {
315 String summary = "", description;
316 if (comment != null) {
317 if (comment.contains(".")) {
318 int periodIndex = comment.indexOf(".");
319 summary = comment.substring(0, periodIndex);
320 description = comment.length() > periodIndex + 1 ?
321 comment.substring(periodIndex + 1).trim() : "";
322 } else {
323 description = comment;
324 }
325 methodNode.put("summary", summary);
326 methodNode.put("description", description);
327 }
328 }
329
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700330 // Temporary solution to add responses to a method
andreafaa2c4b2015-11-16 13:48:39 -0800331 private void addResponses(ObjectNode methodNode, DocletTag tag, boolean responseJson) {
Sahil Lele372d1f32015-07-31 15:01:41 -0700332 ObjectNode responses = mapper.createObjectNode();
333 methodNode.set("responses", responses);
334
335 ObjectNode success = mapper.createObjectNode();
336 success.put("description", "successful operation");
337 responses.set("200", success);
andreafaa2c4b2015-11-16 13:48:39 -0800338 if (tag != null && responseJson) {
339 ObjectNode schema = mapper.createObjectNode();
340 tag.getParameters().stream().forEach(
341 param -> schema.put("$ref", "#/definitions/" + param));
342 success.set("schema", schema);
343 }
Sahil Lele372d1f32015-07-31 15:01:41 -0700344
345 ObjectNode defaultObj = mapper.createObjectNode();
346 defaultObj.put("description", "Unexpected error");
347 responses.set("default", defaultObj);
348 }
349
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700350 // Checks if the annotations has a value of JSON and returns the string
351 // that Swagger requires
Sahil Lele372d1f32015-07-31 15:01:41 -0700352 private String getIOType(JavaAnnotation annotation) {
353 if (annotation.getNamedParameter("value").toString().equals(JSON)) {
354 return "application/json";
andrea863201a2015-11-24 13:18:30 -0800355 } else if (annotation.getNamedParameter("value").toString().equals(OCTET_STREAM)){
356 return "application/octet_stream";
Sahil Lele372d1f32015-07-31 15:01:41 -0700357 }
358 return "";
359 }
360
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700361 // If the annotation has a Path tag, returns the value with leading and
362 // trailing double quotes and slash removed.
Sahil Lele372d1f32015-07-31 15:01:41 -0700363 private String getPath(JavaAnnotation annotation) {
364 String path = annotation.getNamedParameter("value").toString();
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700365 return path == null ? null : path.replaceAll("(^[\\\"/]*|[/\\\"]*$)", "");
Sahil Lele372d1f32015-07-31 15:01:41 -0700366 }
367
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700368 // Processes parameters of javaMethod and enters the proper key-values into the methodNode
andreafaa2c4b2015-11-16 13:48:39 -0800369 private void processParameters(JavaMethod javaMethod, ObjectNode methodNode, String method, DocletTag tag) {
Sahil Lele372d1f32015-07-31 15:01:41 -0700370 ArrayNode parameters = mapper.createArrayNode();
371 methodNode.set("parameters", parameters);
372 boolean required = true;
373
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700374 for (JavaParameter javaParameter : javaMethod.getParameters()) {
Sahil Lele372d1f32015-07-31 15:01:41 -0700375 ObjectNode individualParameterNode = mapper.createObjectNode();
376 Optional<JavaAnnotation> optional = javaParameter.getAnnotations().stream().filter(
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700377 annotation -> annotation.getType().getName().equals(PATH_PARAM) ||
378 annotation.getType().getName().equals(QUERY_PARAM)).findAny();
Sahil Lele372d1f32015-07-31 15:01:41 -0700379 JavaAnnotation pathType = optional.isPresent() ? optional.get() : null;
380
381 String annotationName = javaParameter.getName();
382
383
384 if (pathType != null) { //the parameter is a path or query parameter
385 individualParameterNode.put("name",
andreafaa2c4b2015-11-16 13:48:39 -0800386 pathType.getNamedParameter("value")
387 .toString().replace("\"", ""));
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700388 if (pathType.getType().getName().equals(PATH_PARAM)) {
Sahil Lele372d1f32015-07-31 15:01:41 -0700389 individualParameterNode.put("in", "path");
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700390 } else if (pathType.getType().getName().equals(QUERY_PARAM)) {
Sahil Lele372d1f32015-07-31 15:01:41 -0700391 individualParameterNode.put("in", "query");
392 }
393 individualParameterNode.put("type", getType(javaParameter.getType()));
394 } else { // the parameter is a body parameter
395 individualParameterNode.put("name", annotationName);
396 individualParameterNode.put("in", "body");
397
andreafaa2c4b2015-11-16 13:48:39 -0800398 // Adds the reference to the Json model for the input
399 // that goes in the post or put operation
400 if (tag != null && (method.toLowerCase().equals("post") ||
401 method.toLowerCase().equals("put"))) {
402 ObjectNode schema = mapper.createObjectNode();
403 tag.getParameters().stream().forEach(param -> {
404 schema.put("$ref", "#/definitions/" + param);
405 });
406 individualParameterNode.set("schema", schema);
407 }
Sahil Lele372d1f32015-07-31 15:01:41 -0700408 }
409 for (DocletTag p : javaMethod.getTagsByName("param")) {
410 if (p.getValue().contains(annotationName)) {
411 try {
412 String description = p.getValue().split(" ", 2)[1].trim();
413 if (description.contains("optional")) {
414 required = false;
415 }
416 individualParameterNode.put("description", description);
417 } catch (Exception e) {
418 e.printStackTrace();
419 }
420 }
421 }
422 individualParameterNode.put("required", required);
423 parameters.add(individualParameterNode);
424 }
425 }
426
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700427 // Returns the Swagger specified strings for the type of a parameter
Sahil Lele372d1f32015-07-31 15:01:41 -0700428 private String getType(JavaType javaType) {
429 String type = javaType.getFullyQualifiedName();
430 String value;
431 if (type.equals(String.class.getName())) {
432 value = "string";
433 } else if (type.equals("int")) {
434 value = "integer";
435 } else if (type.equals(boolean.class.getName())) {
436 value = "boolean";
437 } else if (type.equals(long.class.getName())) {
438 value = "number";
439 } else {
440 value = "";
441 }
442 return value;
443 }
444
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700445 // Writes the swagger.json file using the supplied JSON root.
446 private void genCatalog(ObjectNode root) {
447 File swaggerCfg = new File(dstDirectory, JSON_FILE);
448 if (dstDirectory.exists() || dstDirectory.mkdirs()) {
449 try (FileWriter fw = new FileWriter(swaggerCfg);
450 PrintWriter pw = new PrintWriter(fw)) {
451 pw.println(root.toString());
452 } catch (IOException e) {
453 getLog().warn("Unable to write " + JSON_FILE);
454 }
455 } else {
456 getLog().warn("Unable to create " + dstDirectory);
Sahil Lele372d1f32015-07-31 15:01:41 -0700457 }
458 }
459
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700460 // Generates the registrator Java component.
461 private void genRegistrator() {
462 File dir = new File(dstDirectory, GEN_SRC);
463 File reg = new File(dir, apiPackage.replaceAll("\\.", "/") + "/ApiDocRegistrator.java");
464 File pkg = reg.getParentFile();
465 if (pkg.exists() || pkg.mkdirs()) {
466 try {
467 String src = new String(ByteStreams.toByteArray(getClass().getResourceAsStream(REG_SRC)));
468 src = src.replace("${api.package}", apiPackage)
469 .replace("${web.context}", webContext)
470 .replace("${api.title}", apiTitle)
471 .replace("${api.description}", apiTitle);
472 Files.write(src.getBytes(), reg);
473 } catch (IOException e) {
474 getLog().warn("Unable to write " + reg);
475 }
476 } else {
477 getLog().warn("Unable to create " + reg);
478 }
479 }
480
481 // Returns "nickname" based on method and path for a REST method
Sahil Lele372d1f32015-07-31 15:01:41 -0700482 private String setNickname(String method, String path) {
483 if (!path.equals("")) {
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700484 return (method + path.replace('/', '_').replace("{", "").replace("}", "")).toLowerCase();
Sahil Lele372d1f32015-07-31 15:01:41 -0700485 } else {
486 return method.toLowerCase();
487 }
488 }
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700489
490 private String shortText(String comment) {
491 int i = comment.indexOf('.');
492 return i > 0 ? comment.substring(0, i) : comment;
493 }
494
Sahil Lele372d1f32015-07-31 15:01:41 -0700495}