Code Monkey home page Code Monkey logo

swagger2msf4j's People

Contributors

anuruddhal avatar isharac avatar lakmali avatar malinthaprasan avatar pubudu538 avatar renuka-fernando avatar sanjeewa-malalgoda avatar uvindra avatar vlgunarathne avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar

swagger2msf4j's Issues

Generating Illegal escape character with DTO files

  • Syntax error in DTO.java files with version upgrade with 4545fd5
    • error: illegal escape character
    • \& in example = "[\"
  • Generated code in old version
   /**
   * Supported transports for the API (http and/or https). 
   * @return transport
  **/
  @ApiModelProperty(example = "["http","https"]", required = true, value = "Supported transports for the API (http and/or https). ")
  public List<String> getTransport() {
    return transport;
  }
  • Generated code in new version
   /**
   * Supported transports for the API (http and/or https). 
   * @return transport
  **/
  @ApiModelProperty(example = "[\&quot;http\&quot;,\&quot;https\&quot;]", required = true, value = "Supported transports for the API (http and/or https). ")
  public List<String> getTransport() {
    return transport;
  }

Add WSO2 header to generated files.

Sample header:

/**
 * Copyright (c) 2017, WSO2 Inc. (http://wso2.com) All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

Different property name mapping than the actual variable name does not work as expected

The swagger segment below will generate the ErrorDTO class as mentioned below. Note the "errorMessage" in camel case generated for "error_message" in the model.

definitions:
  Error:
    error_message:
      type: string
public class ErrorDTO   {
  @JsonProperty("error_message")
  private String errorMessage = null;
}

If we use a json like below should correctly map to the variable but it does not work as expected and errorMessage variable is always null.

{
   "error_message" : "sample error message"
}

Generated Factory classes have incorrect order for modifiers.

Generated factory classes from swagger2MSF4J is as below,
public class LocalClaimsApiServiceFactory {
private final static LocalClaimsApiService service = new LocalClaimsApiServiceImpl();

As per the JLS this needs to be as,
private static final LocalClaimsApiService service = new LocalClaimsApiServiceImpl();

As reported style checking plugins. Would be good to have this modification added in the generator plugin.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.