changed default behavior for inflector to have unimplemented handlers

This commit is contained in:
Tony Tam
2015-08-24 17:26:26 -07:00
parent 15e336b90a
commit 392e5172b5
9 changed files with 74 additions and 8 deletions

View File

@@ -16,10 +16,18 @@ import {{modelPackage}}.*;
{{>generatedAnnotation}}
{{#operations}}
public class {{classname}} {
/**
* Uncomment and implement as you see fit. These operations will map
* Direclty to operation calls from the routing logic. Because the inflector
* Code allows you to implement logic incrementally, they are disabled.
**/
{{#operation}}
/*
public ResponseContext {{nickname}}(RequestContext request {{#allParams}}, {{>queryParams}}{{>pathParams}}{{>headerParams}}{{>bodyParams}}{{>formParams}}{{/allParams}}) {
return new ResponseContext().status(Status.INTERNAL_SERVER_ERROR).entity( "Not implemented" );
}
*/
{{/operation}}
}