Package com.wordnik.swagger.model

Examples of com.wordnik.swagger.model.Operation.method()


  public Operation parseOperation(Method method, ApiOperation apiOperation,
      List<ResponseMessage> apiResponses, String isDeprecated,
      List<Parameter> parentParams, ListBuffer<Method> parentMethods) {
    Operation operation = super.parseOperation(method, apiOperation, apiResponses, isDeprecated,
            parentParams, parentMethods);
    return new Operation(operation.method(),
        // for a testing purposes
        "summary by the test swagger test filter",
        operation.notes(),
        operation.responseClass(),
        operation.nickname(),
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.