diff --git a/modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/StaticHtml2Generator.java b/modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/StaticHtml2Generator.java index dba87bf44cb..4f8ea21c835 100644 --- a/modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/StaticHtml2Generator.java +++ b/modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/StaticHtml2Generator.java @@ -190,6 +190,8 @@ public class StaticHtml2Generator extends DefaultCodegen implements CodegenConfi } op.vendorExtensions.put("x-codegen-hasRequiredParams", lastRequired != null); + op.vendorExtensions.put("x-codegen-httpMethodUpperCase", httpMethod.toUpperCase()); + return op; } diff --git a/modules/swagger-codegen/src/main/resources/htmlDocs2/index.mustache b/modules/swagger-codegen/src/main/resources/htmlDocs2/index.mustache index 89fbb662604..12fe0d3b574 100644 --- a/modules/swagger-codegen/src/main/resources/htmlDocs2/index.mustache +++ b/modules/swagger-codegen/src/main/resources/htmlDocs2/index.mustache @@ -224,7 +224,7 @@
curl -X {{httpMethod}}{{#authMethods}}{{#isApiKey}}{{#isKeyInHeader}} -H "{{keyParamName}}: [[apiKey]]"{{/isKeyInHeader}}{{/isApiKey}}{{#isBasic}}{{#hasProduces}} -H "Accept: {{#produces}}{{{mediaType}}}{{#hasMore}},{{/hasMore}}{{/produces}}"{{/hasProduces}}{{#hasConsumes}} -H "Content-Type: {{#consumes}}{{{mediaType}}}{{#hasMore}},{{/hasMore}}{{/consumes}}"{{/hasConsumes}} -H "Authorization: Basic [[basicHash]]"{{/isBasic}}{{/authMethods}} "{{basePath}}{{path}}{{#hasQueryParams}}?{{#queryParams}}{{^-first}}&{{/-first}}{{baseName}}={{vendorExtensions.x-eg}}{{/queryParams}}{{/hasQueryParams}}"
+ curl -X {{vendorExtensions.x-codegen-httpMethodUpperCase}}{{#authMethods}}{{#isApiKey}}{{#isKeyInHeader}} -H "{{keyParamName}}: [[apiKey]]"{{/isKeyInHeader}}{{/isApiKey}}{{#isBasic}}{{#hasProduces}} -H "Accept: {{#produces}}{{{mediaType}}}{{#hasMore}},{{/hasMore}}{{/produces}}"{{/hasProduces}}{{#hasConsumes}} -H "Content-Type: {{#consumes}}{{{mediaType}}}{{#hasMore}},{{/hasMore}}{{/consumes}}"{{/hasConsumes}} -H "Authorization: Basic [[basicHash]]"{{/isBasic}}{{/authMethods}} "{{basePath}}{{path}}{{#hasQueryParams}}?{{#queryParams}}{{^-first}}&{{/-first}}{{baseName}}={{vendorExtensions.x-eg}}{{/queryParams}}{{/hasQueryParams}}"
{{>sample_java}}
diff --git a/samples/client/petstore/java/feign/src/main/gen/io/swagger/client/BuildConfig.java b/samples/client/petstore/java/feign/src/main/gen/io/swagger/client/BuildConfig.java
new file mode 100644
index 00000000000..720765940d3
--- /dev/null
+++ b/samples/client/petstore/java/feign/src/main/gen/io/swagger/client/BuildConfig.java
@@ -0,0 +1,8 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the BuildConfig class actually packed into the APK */
+public final class BuildConfig {
+ public final static boolean DEBUG = Boolean.parseBoolean(null);
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/feign/src/main/gen/io/swagger/client/Manifest.java b/samples/client/petstore/java/feign/src/main/gen/io/swagger/client/Manifest.java
new file mode 100644
index 00000000000..41e0523a208
--- /dev/null
+++ b/samples/client/petstore/java/feign/src/main/gen/io/swagger/client/Manifest.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the Manifest class actually packed into the APK */
+public final class Manifest {
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/feign/src/main/gen/io/swagger/client/R.java b/samples/client/petstore/java/feign/src/main/gen/io/swagger/client/R.java
new file mode 100644
index 00000000000..cd0683364d5
--- /dev/null
+++ b/samples/client/petstore/java/feign/src/main/gen/io/swagger/client/R.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the R class actually packed into the APK */
+public final class R {
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/jersey1/src/main/gen/io/swagger/client/BuildConfig.java b/samples/client/petstore/java/jersey1/src/main/gen/io/swagger/client/BuildConfig.java
new file mode 100644
index 00000000000..720765940d3
--- /dev/null
+++ b/samples/client/petstore/java/jersey1/src/main/gen/io/swagger/client/BuildConfig.java
@@ -0,0 +1,8 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the BuildConfig class actually packed into the APK */
+public final class BuildConfig {
+ public final static boolean DEBUG = Boolean.parseBoolean(null);
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/jersey1/src/main/gen/io/swagger/client/Manifest.java b/samples/client/petstore/java/jersey1/src/main/gen/io/swagger/client/Manifest.java
new file mode 100644
index 00000000000..41e0523a208
--- /dev/null
+++ b/samples/client/petstore/java/jersey1/src/main/gen/io/swagger/client/Manifest.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the Manifest class actually packed into the APK */
+public final class Manifest {
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/jersey1/src/main/gen/io/swagger/client/R.java b/samples/client/petstore/java/jersey1/src/main/gen/io/swagger/client/R.java
new file mode 100644
index 00000000000..cd0683364d5
--- /dev/null
+++ b/samples/client/petstore/java/jersey1/src/main/gen/io/swagger/client/R.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the R class actually packed into the APK */
+public final class R {
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/jersey2-java6/src/main/gen/io/swagger/client/BuildConfig.java b/samples/client/petstore/java/jersey2-java6/src/main/gen/io/swagger/client/BuildConfig.java
new file mode 100644
index 00000000000..720765940d3
--- /dev/null
+++ b/samples/client/petstore/java/jersey2-java6/src/main/gen/io/swagger/client/BuildConfig.java
@@ -0,0 +1,8 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the BuildConfig class actually packed into the APK */
+public final class BuildConfig {
+ public final static boolean DEBUG = Boolean.parseBoolean(null);
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/jersey2-java6/src/main/gen/io/swagger/client/Manifest.java b/samples/client/petstore/java/jersey2-java6/src/main/gen/io/swagger/client/Manifest.java
new file mode 100644
index 00000000000..41e0523a208
--- /dev/null
+++ b/samples/client/petstore/java/jersey2-java6/src/main/gen/io/swagger/client/Manifest.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the Manifest class actually packed into the APK */
+public final class Manifest {
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/jersey2-java6/src/main/gen/io/swagger/client/R.java b/samples/client/petstore/java/jersey2-java6/src/main/gen/io/swagger/client/R.java
new file mode 100644
index 00000000000..cd0683364d5
--- /dev/null
+++ b/samples/client/petstore/java/jersey2-java6/src/main/gen/io/swagger/client/R.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the R class actually packed into the APK */
+public final class R {
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/jersey2-java8/src/main/gen/io/swagger/client/BuildConfig.java b/samples/client/petstore/java/jersey2-java8/src/main/gen/io/swagger/client/BuildConfig.java
new file mode 100644
index 00000000000..720765940d3
--- /dev/null
+++ b/samples/client/petstore/java/jersey2-java8/src/main/gen/io/swagger/client/BuildConfig.java
@@ -0,0 +1,8 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the BuildConfig class actually packed into the APK */
+public final class BuildConfig {
+ public final static boolean DEBUG = Boolean.parseBoolean(null);
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/jersey2-java8/src/main/gen/io/swagger/client/Manifest.java b/samples/client/petstore/java/jersey2-java8/src/main/gen/io/swagger/client/Manifest.java
new file mode 100644
index 00000000000..41e0523a208
--- /dev/null
+++ b/samples/client/petstore/java/jersey2-java8/src/main/gen/io/swagger/client/Manifest.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the Manifest class actually packed into the APK */
+public final class Manifest {
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/jersey2-java8/src/main/gen/io/swagger/client/R.java b/samples/client/petstore/java/jersey2-java8/src/main/gen/io/swagger/client/R.java
new file mode 100644
index 00000000000..cd0683364d5
--- /dev/null
+++ b/samples/client/petstore/java/jersey2-java8/src/main/gen/io/swagger/client/R.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the R class actually packed into the APK */
+public final class R {
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/jersey2/src/main/gen/io/swagger/client/BuildConfig.java b/samples/client/petstore/java/jersey2/src/main/gen/io/swagger/client/BuildConfig.java
new file mode 100644
index 00000000000..720765940d3
--- /dev/null
+++ b/samples/client/petstore/java/jersey2/src/main/gen/io/swagger/client/BuildConfig.java
@@ -0,0 +1,8 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the BuildConfig class actually packed into the APK */
+public final class BuildConfig {
+ public final static boolean DEBUG = Boolean.parseBoolean(null);
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/jersey2/src/main/gen/io/swagger/client/Manifest.java b/samples/client/petstore/java/jersey2/src/main/gen/io/swagger/client/Manifest.java
new file mode 100644
index 00000000000..41e0523a208
--- /dev/null
+++ b/samples/client/petstore/java/jersey2/src/main/gen/io/swagger/client/Manifest.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the Manifest class actually packed into the APK */
+public final class Manifest {
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/jersey2/src/main/gen/io/swagger/client/R.java b/samples/client/petstore/java/jersey2/src/main/gen/io/swagger/client/R.java
new file mode 100644
index 00000000000..cd0683364d5
--- /dev/null
+++ b/samples/client/petstore/java/jersey2/src/main/gen/io/swagger/client/R.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the R class actually packed into the APK */
+public final class R {
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/gen/io/swagger/client/BuildConfig.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/gen/io/swagger/client/BuildConfig.java
new file mode 100644
index 00000000000..720765940d3
--- /dev/null
+++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/gen/io/swagger/client/BuildConfig.java
@@ -0,0 +1,8 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the BuildConfig class actually packed into the APK */
+public final class BuildConfig {
+ public final static boolean DEBUG = Boolean.parseBoolean(null);
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/gen/io/swagger/client/Manifest.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/gen/io/swagger/client/Manifest.java
new file mode 100644
index 00000000000..41e0523a208
--- /dev/null
+++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/gen/io/swagger/client/Manifest.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the Manifest class actually packed into the APK */
+public final class Manifest {
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/gen/io/swagger/client/R.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/gen/io/swagger/client/R.java
new file mode 100644
index 00000000000..cd0683364d5
--- /dev/null
+++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/gen/io/swagger/client/R.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the R class actually packed into the APK */
+public final class R {
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/gen/io/swagger/client/BuildConfig.java b/samples/client/petstore/java/okhttp-gson/src/main/gen/io/swagger/client/BuildConfig.java
new file mode 100644
index 00000000000..720765940d3
--- /dev/null
+++ b/samples/client/petstore/java/okhttp-gson/src/main/gen/io/swagger/client/BuildConfig.java
@@ -0,0 +1,8 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the BuildConfig class actually packed into the APK */
+public final class BuildConfig {
+ public final static boolean DEBUG = Boolean.parseBoolean(null);
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/gen/io/swagger/client/Manifest.java b/samples/client/petstore/java/okhttp-gson/src/main/gen/io/swagger/client/Manifest.java
new file mode 100644
index 00000000000..41e0523a208
--- /dev/null
+++ b/samples/client/petstore/java/okhttp-gson/src/main/gen/io/swagger/client/Manifest.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the Manifest class actually packed into the APK */
+public final class Manifest {
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/gen/io/swagger/client/R.java b/samples/client/petstore/java/okhttp-gson/src/main/gen/io/swagger/client/R.java
new file mode 100644
index 00000000000..cd0683364d5
--- /dev/null
+++ b/samples/client/petstore/java/okhttp-gson/src/main/gen/io/swagger/client/R.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the R class actually packed into the APK */
+public final class R {
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/resteasy/src/main/gen/io/swagger/client/BuildConfig.java b/samples/client/petstore/java/resteasy/src/main/gen/io/swagger/client/BuildConfig.java
new file mode 100644
index 00000000000..720765940d3
--- /dev/null
+++ b/samples/client/petstore/java/resteasy/src/main/gen/io/swagger/client/BuildConfig.java
@@ -0,0 +1,8 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the BuildConfig class actually packed into the APK */
+public final class BuildConfig {
+ public final static boolean DEBUG = Boolean.parseBoolean(null);
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/resteasy/src/main/gen/io/swagger/client/Manifest.java b/samples/client/petstore/java/resteasy/src/main/gen/io/swagger/client/Manifest.java
new file mode 100644
index 00000000000..41e0523a208
--- /dev/null
+++ b/samples/client/petstore/java/resteasy/src/main/gen/io/swagger/client/Manifest.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the Manifest class actually packed into the APK */
+public final class Manifest {
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/resteasy/src/main/gen/io/swagger/client/R.java b/samples/client/petstore/java/resteasy/src/main/gen/io/swagger/client/R.java
new file mode 100644
index 00000000000..cd0683364d5
--- /dev/null
+++ b/samples/client/petstore/java/resteasy/src/main/gen/io/swagger/client/R.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the R class actually packed into the APK */
+public final class R {
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/resttemplate/src/main/gen/io/swagger/client/BuildConfig.java b/samples/client/petstore/java/resttemplate/src/main/gen/io/swagger/client/BuildConfig.java
new file mode 100644
index 00000000000..720765940d3
--- /dev/null
+++ b/samples/client/petstore/java/resttemplate/src/main/gen/io/swagger/client/BuildConfig.java
@@ -0,0 +1,8 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the BuildConfig class actually packed into the APK */
+public final class BuildConfig {
+ public final static boolean DEBUG = Boolean.parseBoolean(null);
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/resttemplate/src/main/gen/io/swagger/client/Manifest.java b/samples/client/petstore/java/resttemplate/src/main/gen/io/swagger/client/Manifest.java
new file mode 100644
index 00000000000..41e0523a208
--- /dev/null
+++ b/samples/client/petstore/java/resttemplate/src/main/gen/io/swagger/client/Manifest.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the Manifest class actually packed into the APK */
+public final class Manifest {
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/resttemplate/src/main/gen/io/swagger/client/R.java b/samples/client/petstore/java/resttemplate/src/main/gen/io/swagger/client/R.java
new file mode 100644
index 00000000000..cd0683364d5
--- /dev/null
+++ b/samples/client/petstore/java/resttemplate/src/main/gen/io/swagger/client/R.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the R class actually packed into the APK */
+public final class R {
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/retrofit/src/main/gen/io/swagger/client/BuildConfig.java b/samples/client/petstore/java/retrofit/src/main/gen/io/swagger/client/BuildConfig.java
new file mode 100644
index 00000000000..720765940d3
--- /dev/null
+++ b/samples/client/petstore/java/retrofit/src/main/gen/io/swagger/client/BuildConfig.java
@@ -0,0 +1,8 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the BuildConfig class actually packed into the APK */
+public final class BuildConfig {
+ public final static boolean DEBUG = Boolean.parseBoolean(null);
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/retrofit/src/main/gen/io/swagger/client/Manifest.java b/samples/client/petstore/java/retrofit/src/main/gen/io/swagger/client/Manifest.java
new file mode 100644
index 00000000000..41e0523a208
--- /dev/null
+++ b/samples/client/petstore/java/retrofit/src/main/gen/io/swagger/client/Manifest.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the Manifest class actually packed into the APK */
+public final class Manifest {
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/retrofit/src/main/gen/io/swagger/client/R.java b/samples/client/petstore/java/retrofit/src/main/gen/io/swagger/client/R.java
new file mode 100644
index 00000000000..cd0683364d5
--- /dev/null
+++ b/samples/client/petstore/java/retrofit/src/main/gen/io/swagger/client/R.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the R class actually packed into the APK */
+public final class R {
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/retrofit2-play24/src/main/gen/io/swagger/client/BuildConfig.java b/samples/client/petstore/java/retrofit2-play24/src/main/gen/io/swagger/client/BuildConfig.java
new file mode 100644
index 00000000000..720765940d3
--- /dev/null
+++ b/samples/client/petstore/java/retrofit2-play24/src/main/gen/io/swagger/client/BuildConfig.java
@@ -0,0 +1,8 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the BuildConfig class actually packed into the APK */
+public final class BuildConfig {
+ public final static boolean DEBUG = Boolean.parseBoolean(null);
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/retrofit2-play24/src/main/gen/io/swagger/client/Manifest.java b/samples/client/petstore/java/retrofit2-play24/src/main/gen/io/swagger/client/Manifest.java
new file mode 100644
index 00000000000..41e0523a208
--- /dev/null
+++ b/samples/client/petstore/java/retrofit2-play24/src/main/gen/io/swagger/client/Manifest.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the Manifest class actually packed into the APK */
+public final class Manifest {
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/retrofit2-play24/src/main/gen/io/swagger/client/R.java b/samples/client/petstore/java/retrofit2-play24/src/main/gen/io/swagger/client/R.java
new file mode 100644
index 00000000000..cd0683364d5
--- /dev/null
+++ b/samples/client/petstore/java/retrofit2-play24/src/main/gen/io/swagger/client/R.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the R class actually packed into the APK */
+public final class R {
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/retrofit2/src/main/gen/io/swagger/client/BuildConfig.java b/samples/client/petstore/java/retrofit2/src/main/gen/io/swagger/client/BuildConfig.java
new file mode 100644
index 00000000000..720765940d3
--- /dev/null
+++ b/samples/client/petstore/java/retrofit2/src/main/gen/io/swagger/client/BuildConfig.java
@@ -0,0 +1,8 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the BuildConfig class actually packed into the APK */
+public final class BuildConfig {
+ public final static boolean DEBUG = Boolean.parseBoolean(null);
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/retrofit2/src/main/gen/io/swagger/client/Manifest.java b/samples/client/petstore/java/retrofit2/src/main/gen/io/swagger/client/Manifest.java
new file mode 100644
index 00000000000..41e0523a208
--- /dev/null
+++ b/samples/client/petstore/java/retrofit2/src/main/gen/io/swagger/client/Manifest.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the Manifest class actually packed into the APK */
+public final class Manifest {
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/retrofit2/src/main/gen/io/swagger/client/R.java b/samples/client/petstore/java/retrofit2/src/main/gen/io/swagger/client/R.java
new file mode 100644
index 00000000000..cd0683364d5
--- /dev/null
+++ b/samples/client/petstore/java/retrofit2/src/main/gen/io/swagger/client/R.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the R class actually packed into the APK */
+public final class R {
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/retrofit2rx/src/main/gen/io/swagger/client/BuildConfig.java b/samples/client/petstore/java/retrofit2rx/src/main/gen/io/swagger/client/BuildConfig.java
new file mode 100644
index 00000000000..720765940d3
--- /dev/null
+++ b/samples/client/petstore/java/retrofit2rx/src/main/gen/io/swagger/client/BuildConfig.java
@@ -0,0 +1,8 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the BuildConfig class actually packed into the APK */
+public final class BuildConfig {
+ public final static boolean DEBUG = Boolean.parseBoolean(null);
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/retrofit2rx/src/main/gen/io/swagger/client/Manifest.java b/samples/client/petstore/java/retrofit2rx/src/main/gen/io/swagger/client/Manifest.java
new file mode 100644
index 00000000000..41e0523a208
--- /dev/null
+++ b/samples/client/petstore/java/retrofit2rx/src/main/gen/io/swagger/client/Manifest.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the Manifest class actually packed into the APK */
+public final class Manifest {
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/retrofit2rx/src/main/gen/io/swagger/client/R.java b/samples/client/petstore/java/retrofit2rx/src/main/gen/io/swagger/client/R.java
new file mode 100644
index 00000000000..cd0683364d5
--- /dev/null
+++ b/samples/client/petstore/java/retrofit2rx/src/main/gen/io/swagger/client/R.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the R class actually packed into the APK */
+public final class R {
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/gen/io/swagger/client/BuildConfig.java b/samples/client/petstore/java/retrofit2rx2/src/main/gen/io/swagger/client/BuildConfig.java
new file mode 100644
index 00000000000..720765940d3
--- /dev/null
+++ b/samples/client/petstore/java/retrofit2rx2/src/main/gen/io/swagger/client/BuildConfig.java
@@ -0,0 +1,8 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the BuildConfig class actually packed into the APK */
+public final class BuildConfig {
+ public final static boolean DEBUG = Boolean.parseBoolean(null);
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/gen/io/swagger/client/Manifest.java b/samples/client/petstore/java/retrofit2rx2/src/main/gen/io/swagger/client/Manifest.java
new file mode 100644
index 00000000000..41e0523a208
--- /dev/null
+++ b/samples/client/petstore/java/retrofit2rx2/src/main/gen/io/swagger/client/Manifest.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the Manifest class actually packed into the APK */
+public final class Manifest {
+}
\ No newline at end of file
diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/gen/io/swagger/client/R.java b/samples/client/petstore/java/retrofit2rx2/src/main/gen/io/swagger/client/R.java
new file mode 100644
index 00000000000..cd0683364d5
--- /dev/null
+++ b/samples/client/petstore/java/retrofit2rx2/src/main/gen/io/swagger/client/R.java
@@ -0,0 +1,7 @@
+/*___Generated_by_IDEA___*/
+
+package io.swagger.client;
+
+/* This stub is only used by the IDE. It is NOT the R class actually packed into the APK */
+public final class R {
+}
\ No newline at end of file
diff --git a/samples/html2/index.html b/samples/html2/index.html
index 61c99f981e1..7808570cd31 100644
--- a/samples/html2/index.html
+++ b/samples/html2/index.html
@@ -1012,7 +1012,7 @@ margin-bottom: 20px;
curl -X post "http://petstore.swagger.io/v2/pet"
+ curl -X POST "http://petstore.swagger.io/v2/pet"
import io.swagger.client.*;
@@ -1143,7 +1143,8 @@ namespace Example
}
}
}
-}
+}
+
curl -X delete "http://petstore.swagger.io/v2/pet/{petId}"
+ curl -X DELETE "http://petstore.swagger.io/v2/pet/{petId}"
import io.swagger.client.*;
@@ -1437,7 +1438,8 @@ namespace Example
}
}
}
-}
+}
+
curl -X get "http://petstore.swagger.io/v2/pet/findByStatus?status="
+ curl -X GET "http://petstore.swagger.io/v2/pet/findByStatus?status="
import io.swagger.client.*;
@@ -1770,7 +1772,8 @@ namespace Example
}
}
}
-}
+}
+
curl -X get "http://petstore.swagger.io/v2/pet/findByTags?tags="
+ curl -X GET "http://petstore.swagger.io/v2/pet/findByTags?tags="
import io.swagger.client.*;
@@ -2115,7 +2118,8 @@ namespace Example
}
}
}
-}
+}
+
curl -X get -H "api_key: [[apiKey]]" "http://petstore.swagger.io/v2/pet/{petId}"
+ curl -X GET -H "api_key: [[apiKey]]" "http://petstore.swagger.io/v2/pet/{petId}"
import io.swagger.client.*;
@@ -2466,7 +2470,8 @@ namespace Example
}
}
}
-}
+}
+
curl -X put "http://petstore.swagger.io/v2/pet"
+ curl -X PUT "http://petstore.swagger.io/v2/pet"
import io.swagger.client.*;
@@ -2811,7 +2816,8 @@ namespace Example
}
}
}
-}
+}
+
curl -X post "http://petstore.swagger.io/v2/pet/{petId}"
+ curl -X POST "http://petstore.swagger.io/v2/pet/{petId}"
import io.swagger.client.*;
@@ -3127,7 +3133,8 @@ namespace Example
}
}
}
-}
+}
+
curl -X post "http://petstore.swagger.io/v2/pet/{petId}/uploadImage"
+ curl -X POST "http://petstore.swagger.io/v2/pet/{petId}/uploadImage"
import io.swagger.client.*;
@@ -3511,7 +3518,8 @@ namespace Example
}
}
}
-}
+}
+
curl -X delete "http://petstore.swagger.io/v2/store/order/{orderId}"
+ curl -X DELETE "http://petstore.swagger.io/v2/store/order/{orderId}"
import io.swagger.client.*;
@@ -3898,7 +3906,8 @@ namespace Example
}
}
}
-}
+}
+
curl -X get -H "api_key: [[apiKey]]" "http://petstore.swagger.io/v2/store/inventory"
+ curl -X GET -H "api_key: [[apiKey]]" "http://petstore.swagger.io/v2/store/inventory"
import io.swagger.client.*;
@@ -4188,7 +4197,8 @@ namespace Example
}
}
}
-}
+}
+
curl -X get "http://petstore.swagger.io/v2/store/order/{orderId}"
+ curl -X GET "http://petstore.swagger.io/v2/store/order/{orderId}"
import io.swagger.client.*;
@@ -4465,7 +4475,8 @@ namespace Example
}
}
}
-}
+}
+
curl -X post "http://petstore.swagger.io/v2/store/order"
+ curl -X POST "http://petstore.swagger.io/v2/store/order"
import io.swagger.client.*;
@@ -4785,7 +4796,8 @@ namespace Example
}
}
}
-}
+}
+
curl -X post "http://petstore.swagger.io/v2/user"
+ curl -X POST "http://petstore.swagger.io/v2/user"
import io.swagger.client.*;
@@ -5093,7 +5105,8 @@ namespace Example
}
}
}
-}
+}
+
curl -X post "http://petstore.swagger.io/v2/user/createWithArray"
+ curl -X POST "http://petstore.swagger.io/v2/user/createWithArray"
import io.swagger.client.*;
@@ -5352,7 +5365,8 @@ namespace Example
}
}
}
-}
+}
+
curl -X post "http://petstore.swagger.io/v2/user/createWithList"
+ curl -X POST "http://petstore.swagger.io/v2/user/createWithList"
import io.swagger.client.*;
@@ -5614,7 +5628,8 @@ namespace Example
}
}
}
-}
+}
+
curl -X delete "http://petstore.swagger.io/v2/user/{username}"
+ curl -X DELETE "http://petstore.swagger.io/v2/user/{username}"
import io.swagger.client.*;
@@ -5876,7 +5891,8 @@ namespace Example
}
}
}
-}
+}
+
curl -X get "http://petstore.swagger.io/v2/user/{username}"
+ curl -X GET "http://petstore.swagger.io/v2/user/{username}"
import io.swagger.client.*;
@@ -6147,7 +6163,8 @@ namespace Example
}
}
}
-}
+}
+
curl -X get "http://petstore.swagger.io/v2/user/login?username=&password="
+ curl -X GET "http://petstore.swagger.io/v2/user/login?username=&password="
import io.swagger.client.*;
@@ -6471,7 +6488,8 @@ namespace Example
}
}
}
-}
+}
+
curl -X get "http://petstore.swagger.io/v2/user/logout"
+ curl -X GET "http://petstore.swagger.io/v2/user/logout"
import io.swagger.client.*;
@@ -6840,7 +6858,8 @@ namespace Example
}
}
}
-}
+}
+
curl -X put "http://petstore.swagger.io/v2/user/{username}"
+ curl -X PUT "http://petstore.swagger.io/v2/user/{username}"
import io.swagger.client.*;
@@ -7061,7 +7080,8 @@ namespace Example
}
}
}
-}
+}
+