modules/…/…/…/…/…/cxf-cdi
api.mustache +2 -1
apiService.mustache +1 -1
samples/server/…/…/…/…/…/…/…/api
PetApi.java +1 -0
PetApiService.java +1 -1
@@ -44,7 +44,8 @@ public class {{classname}} {
@@ -44,7 +44,8 @@ public class {{classname}} {
{{#hasConsumes}}@Consumes({ {{#consumes}}"{{{mediaType}}}"{{^-last}}, {{/-last}}{{/consumes}} }){{/hasConsumes}}
{{#hasProduces}}@Produces({ {{#produces}}"{{{mediaType}}}"{{^-last}}, {{/-last}}{{/produces}} }){{/hasProduces}}
@ApiOperation(value = "{{{summary}}}", notes = "{{{notes}}}", response = {{{returnBaseType}}}.class{{#returnContainer}}, responseContainer = "{{{.}}}"{{/returnContainer}}{{#hasAuthMethods}}, authorizations = {
@@ -20,7 +20,7 @@ import javax.ws.rs.core.SecurityContext;
@@ -20,7 +20,7 @@ import javax.ws.rs.core.SecurityContext;
public Response {{nickname}}({{#allParams}}{{>serviceQueryParams}}{{>servicePathParams}}{{>serviceHeaderParams}}{{>serviceBodyParams}}{{>serviceFormParams}}, {{/allParams}}SecurityContext securityContext);
@@ -87,6 +87,7 @@ public class PetApi {
@@ -87,6 +87,7 @@ public class PetApi {
@ApiOperation(value = "Finds Pets by tags", notes = "Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.", response = Pet.class, responseContainer = "List", authorizations = {
@@ -22,7 +22,7 @@ public interface PetApiService {
@@ -22,7 +22,7 @@ public interface PetApiService {
public Response updatePetWithForm(Long petId, String name, String status, SecurityContext securityContext);