Skip to content

Commit 431a52c

Browse files
authored
Merge pull request #7970 from jmini/issue7918
Generate all java & jaxrs examples
2 parents e31243b + 2c52416 commit 431a52c

File tree

723 files changed

+2220
-892
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

723 files changed

+2220
-892
lines changed

samples/client/petstore/java/feign/src/main/java/io/swagger/client/model/AdditionalPropertiesClass.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,11 @@
2929

3030
public class AdditionalPropertiesClass {
3131

32+
3233
@JsonProperty("map_property")
3334
private Map<String, String> mapProperty = null;
3435

36+
3537
@JsonProperty("map_of_map_property")
3638
private Map<String, Map<String, String>> mapOfMapProperty = null;
3739

samples/client/petstore/java/feign/src/main/java/io/swagger/client/model/Animal.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,11 @@
3737

3838
public class Animal {
3939

40+
4041
@JsonProperty("className")
4142
private String className = null;
4243

44+
4345
@JsonProperty("color")
4446
private String color = "red";
4547

samples/client/petstore/java/feign/src/main/java/io/swagger/client/model/ArrayOfArrayOfNumberOnly.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929

3030
public class ArrayOfArrayOfNumberOnly {
3131

32+
3233
@JsonProperty("ArrayArrayNumber")
3334
private List<List<BigDecimal>> arrayArrayNumber = null;
3435

samples/client/petstore/java/feign/src/main/java/io/swagger/client/model/ArrayOfNumberOnly.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929

3030
public class ArrayOfNumberOnly {
3131

32+
3233
@JsonProperty("ArrayNumber")
3334
private List<BigDecimal> arrayNumber = null;
3435

samples/client/petstore/java/feign/src/main/java/io/swagger/client/model/ArrayTest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,15 @@
2929

3030
public class ArrayTest {
3131

32+
3233
@JsonProperty("array_of_string")
3334
private List<String> arrayOfString = null;
3435

36+
3537
@JsonProperty("array_array_of_integer")
3638
private List<List<Long>> arrayArrayOfInteger = null;
3739

40+
3841
@JsonProperty("array_array_of_model")
3942
private List<List<ReadOnlyFirst>> arrayArrayOfModel = null;
4043

samples/client/petstore/java/feign/src/main/java/io/swagger/client/model/Capitalization.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,21 +26,27 @@
2626

2727
public class Capitalization {
2828

29+
2930
@JsonProperty("smallCamel")
3031
private String smallCamel = null;
3132

33+
3234
@JsonProperty("CapitalCamel")
3335
private String capitalCamel = null;
3436

37+
3538
@JsonProperty("small_Snake")
3639
private String smallSnake = null;
3740

41+
3842
@JsonProperty("Capital_Snake")
3943
private String capitalSnake = null;
4044

45+
4146
@JsonProperty("SCA_ETH_Flow_Points")
4247
private String scAETHFlowPoints = null;
4348

49+
4450
@JsonProperty("ATT_NAME")
4551
private String ATT_NAME = null;
4652

samples/client/petstore/java/feign/src/main/java/io/swagger/client/model/Cat.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,15 @@
2727

2828
public class Cat extends Animal {
2929

30+
3031
@JsonProperty("className")
3132
private String className = null;
3233

34+
3335
@JsonProperty("color")
3436
private String color = "red";
3537

38+
3639
@JsonProperty("declawed")
3740
private Boolean declawed = null;
3841

samples/client/petstore/java/feign/src/main/java/io/swagger/client/model/Category.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,11 @@
2626

2727
public class Category {
2828

29+
2930
@JsonProperty("id")
3031
private Long id = null;
3132

33+
3234
@JsonProperty("name")
3335
private String name = null;
3436

samples/client/petstore/java/feign/src/main/java/io/swagger/client/model/ClassModel.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626

2727
public class ClassModel {
2828

29+
2930
@JsonProperty("_class")
3031
private String propertyClass = null;
3132

samples/client/petstore/java/feign/src/main/java/io/swagger/client/model/Client.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626

2727
public class Client {
2828

29+
2930
@JsonProperty("client")
3031
private String client = null;
3132

0 commit comments

Comments
 (0)