rebuilt, updated versions

This commit is contained in:
Tony Tam
2015-08-24 00:32:58 -07:00
parent dfb9d26c75
commit 9cc7615b71
9 changed files with 11 additions and 94 deletions

View File

@@ -16,12 +16,11 @@ import {{modelPackage}}.*;
{{>generatedAnnotation}}
{{#operations}}
public class {{classname}} {
{{#operation}}
public ResponseContext {{nickname}}(RequestContext request {{#allParams}},{{>queryParams}}{{>pathParams}}{{>headerParams}}{{>bodyParams}}{{>formParams}}{{/allParams}})
{
public ResponseContext {{nickname}}(RequestContext request {{#allParams}}, {{>queryParams}}{{>pathParams}}{{>headerParams}}{{>bodyParams}}{{>formParams}}{{/allParams}}) {
return new ResponseContext().status(Status.INTERNAL_SERVER_ERROR).entity( "Not implemented" );
}
{{/operation}}
}
{{/operations}}