Shyri Villar
93ed2e639d
added android-volley to CodegenConfig
2015-12-29 15:44:59 +01:00
Shyri Villar
b290d2d919
fix responses template [android-volley]
2015-12-29 15:44:57 +01:00
Shyri Villar
5c9606bc66
fix apiInvoker template imports [android-volley]
2015-12-29 15:44:56 +01:00
Shyri Villar
7b811ad44b
various api template fixes [android-volley]
2015-12-29 15:44:55 +01:00
Shyri Villar
b9abe2b51d
Added apiException template [android-volley]
2015-12-29 15:44:54 +01:00
Shyri Villar
84a22c8344
Added build.gradle and AndroidManifest [android-volley]
2015-12-29 15:44:53 +01:00
Shyri Villar
f5e757e6b9
Added build.gradle and AndroidManifest [android-volley]
2015-12-29 15:44:52 +01:00
Shyri Villar
52ebd25732
Added responses class [android-volley]
2015-12-29 15:44:51 +01:00
Shyri Villar
c80ff7ed0d
Added responses class
2015-12-29 15:44:49 +01:00
Shyri Villar
980957b9a9
fix getrequest import [android-volley]
2015-12-29 15:44:48 +01:00
Shyri Villar
f3ff567d3f
added default string response to api template [android-volley]
2015-12-29 15:44:47 +01:00
Shyri Villar
e098e8f372
Added PostRequest [android-volley]
2015-12-29 15:44:46 +01:00
Shyri Villar
5c79c21f3c
fixed Api returnType [android-volley]
2015-12-29 15:44:45 +01:00
Shyri Villar
c3679893df
Added jsonUtil and Pair android-volley
2015-12-29 15:44:43 +01:00
Shyri Villar
090839fe06
Added AndroidVolley ClientCodegen
2015-12-29 15:44:42 +01:00
Shyri Villar
acac1bb83b
Added GetRequest template android-volley
2015-12-29 15:44:41 +01:00
Shyri Villar
efac324b73
Added api template android-volley
2015-12-29 15:44:40 +01:00
Shyri Villar
16bf228a41
Added model template android-volley
2015-12-29 15:44:38 +01:00
Shyri Villar
a2aeb5a129
Added ClientOptions android-volley
2015-12-29 15:44:37 +01:00
Shyri Villar
795b324fe5
Added imports to Android Volley apiInvoker
2015-12-29 15:44:36 +01:00
Shyri Villar
78352dd454
First steps on Android Volley ApiInvoker
2015-12-29 15:44:35 +01:00
wing328
e4078855f5
fix date mapping for perl
2015-12-29 16:29:20 +08:00
wing328
8882c36c91
fix perl datetime mapping
2015-12-29 15:21:38 +08:00
wing328
fed4ba3cf8
use DateTime for php date
2015-12-29 15:04:27 +08:00
wing328
11d6bb9a95
php remove duplicated type mapping
2015-12-29 15:00:56 +08:00
wing328
6e4d097710
Merge pull request #1769 from arnested/php-wildcard-response-code
...
Handle wildcard response codes correct in PHP
2015-12-29 14:49:01 +08:00
wing328
c5ccb3f8eb
Merge pull request #1772 from xhh/ruby-inline-base-object
...
[Ruby] Remove base_object from Ruby model
2015-12-29 13:27:23 +08:00
Brad Smith
acc43e7f71
Update README.mustache
...
Fix broken link
2015-12-28 21:14:08 -08:00
xhh
3d4b5ff1c7
Java: Move method StringUtil.toIndentedString to model
...
Closes #1701
2015-12-29 12:30:54 +08:00
Ian Chan
3103846f45
Enforce Java 1.8 when generating spring-mvc with j8-async option
...
The spring-mvc j8-async code is now located in it's own sample directory
with Java 8 enforced via Maven plug-in.
2015-12-29 13:40:46 +13:00
Kirill Vlasov
7a63dd1416
Fixing pmd:RedundantFieldInitializer - Redundant Field Initializer
2015-12-28 17:38:54 +05:00
xhh
670e56f692
Remove base_object from Ruby model
...
and move methods from base_object to each model so that model files will
have no dependency when generating "models only"
2015-12-28 17:42:33 +08:00
wing328
d6125483cf
remove commented code in perl
2015-12-28 16:32:41 +08:00
wing328
fa9844af7e
remove baseobject from perl, add README.mustache
2015-12-28 16:08:43 +08:00
wing328
3a2447634c
Merge pull request #1766 from wing328/swift_promisekit_3
...
[Swift] update promisekit and alamofire to the latest version
2015-12-28 16:01:52 +08:00
wing328
858d44a27f
Merge pull request #1761 from xhh/ruby-timeout
...
Ruby client: add "timeout" to configuration
2015-12-27 23:42:53 +08:00
Tony Tam
cbfdffb09a
Merge pull request #1734 from wing328/fix_array_inline_response
...
Fix array/map inline response/model
2015-12-27 06:18:01 -08:00
Arne Jørgensen
6a45111e10
Handle wildcard response codes correct in PHP
...
Wildcard response codes was handled like all other response codes
resulting in a misleading construction like this:
```
switch ($e->getCode()) {
case 0:
$data = $this->apiClient->getSerializer()->deserialize($e->getResponseBody(), '\Swagger\Client\Model\Error', $e->getResponseHeaders());
$e->setResponseObject($data);
break;
}
```
This commit fixes it to use the default fallback of the PHP switch
statement:
```
switch ($e->getCode()) {
default:
$data = $this->apiClient->getSerializer()->deserialize($e->getResponseBody(), '\Swagger\Client\Model\Error', $e->getResponseHeaders());
$e->setResponseObject($data);
break;
}
```
2015-12-27 15:17:18 +01:00
Patrick Culligan
3266fbbf81
corrected JavaDos issues that were UNRELATED to this PR to get the CI server moving.
2015-12-26 18:18:14 -06:00
Patrick Culligan
ef1222f2bf
Added support for vendor extensions on model and property
2015-12-26 17:29:56 -06:00
wing328
5638027179
remove downloadImage from petstore.json
2015-12-26 16:15:58 +08:00
wing328
6124062a70
update promisekit and alamofire to the latest version
2015-12-26 16:12:56 +08:00
wing328
89daeb3bf8
Merge pull request #1755 from xhh/java-timeout
...
Java okhttp-gson client: get/set connect timeout
2015-12-25 14:50:10 +08:00
xhh
8fa14446e3
Add milliseconds hint to comment of getConnectTimeout
2015-12-24 17:56:19 +08:00
xhh
43c0d20743
Ruby client: add "timeout" to configuration
2015-12-24 14:54:39 +08:00
Tony Tam
7381b816ff
fixes #1756
2015-12-23 05:50:46 -08:00
xhh
a58901f375
Java okhttp-gson client: get/set connect timeout
2015-12-23 18:58:16 +08:00
Ian Chan
638ee88830
Removed Jersey2 test from spring-mvc codegen
...
The previous patch to allow sub options to spring-mvc had removed the
invalid Jersey2 option from spring-mvc codegen, this patch also fixes
the associated test.
2015-12-23 10:29:47 +13:00
wing328
55fece195d
Merge pull request #1733 from DevFactory/staging/override-annotation-should-be-used-where-necessary-fix-1
...
Fixing squid:S1161 - @Override annotation should be used where necessary
2015-12-22 22:22:46 +08:00
Tony Tam
b46e3ad400
updated for #1749
2015-12-21 22:16:11 -08:00
wing328
aa55c95d1b
fix default needToImport
2015-12-21 14:12:19 +08:00
Ian Chan
29b4098a8d
Spring-MVC config "j8-async": Uses async servlet & Java 8 interface
...
default
This template is mainly for Maven code-gen plugin use-case - when
Swagger spec on existing project changes there is no need to manually
copy/paste the new functions from the generated client. This will
provide a default (empty) implementation to existing impl and user just
need to override the stub implementation.
Because it generates an interface instead of a concrete stub, an
implementation will be needed to actuate a service end-point. And don't
forget to put @Controller on the implementation!
2015-12-20 09:53:41 +13:00
wing328
2cc5924498
update test case, docstring for timeout
2015-12-19 23:15:54 +08:00
wing328
0aa4d2fb8e
csharp add timeout, fix default constructor
2015-12-19 22:55:52 +08:00
Tony Tam
968c943c44
more enum support
2015-12-18 10:58:30 -08:00
Tony Tam
24ed12f448
Merge pull request #1740 from swagger-api/issue-1357
...
Add generation of enum models
2015-12-18 09:34:31 -05:00
wing328
7e3ad18faf
Merge pull request #1725 from hacki11/patch-1
...
[C#] fix filename and Content-Disposition parsing on FileStream
2015-12-18 21:23:25 +08:00
Tony Tam
a3a269c801
Merge branch 'master' into issue-1357
2015-12-18 08:13:20 -05:00
Tony Tam
5b0b759e4e
added enum class support
2015-12-18 08:12:15 -05:00
wing328
c1dda0ca17
update test case for inline model
2015-12-18 16:50:55 +08:00
xhh
1777124e62
Javascript: remove call to apiClietn.parameterToString
2015-12-17 21:37:04 +08:00
xhh
1b0294dac0
Javascript: fix the constructFromObject issue
...
Closes #1721
Also fixed indentations in models
2015-12-17 21:29:58 +08:00
xhh
a58f755a6a
Escape path parameters with encodeURIComponent
...
and tweak the test command
2015-12-17 21:19:28 +08:00
xhh
180d2ae908
Merge branch 'master' into javascript-testing
2015-12-17 20:42:37 +08:00
xhh
f07b75f419
Include Javascript client into integration test
...
and return the promise-like result of $.ajax for API
2015-12-17 20:41:09 +08:00
xhh
794783a4bb
Javascript: bug fixes, clean-ups, tests
...
- Fix the "apiClient.escapeString" issue
- Remove unused code in api.mustache
- Add test case for creating and getting Pet
2015-12-17 20:05:00 +08:00
xhh
dcfe40fc44
Configure Javascript tests to allow running in browser
2015-12-17 18:51:12 +08:00
wing328
03e3a2d0dd
remove logger, replace tab with space
2015-12-17 18:05:39 +08:00
xhh
146b4a4813
Use a more real jquery mocking in test
2015-12-17 18:00:09 +08:00
wing328
c8c047a2bc
fix map in inline model
2015-12-17 17:55:47 +08:00
wing328
2e143ec054
fix map of inline response
2015-12-17 17:39:55 +08:00
wing328
13b03d92d4
update response to support array of inline model
2015-12-17 17:01:14 +08:00
wing328
c8a10aee33
add support for inline array model defined in inline model
2015-12-17 16:44:35 +08:00
wing328
c5c1712374
fix array of inline model body parameter
2015-12-17 15:44:22 +08:00
evigeant
e19d4228e9
Fixed CodeGen tests following addition of implFolder additional property
...
in jaxrs
2015-12-16 22:22:01 -05:00
evigeant
6f4f293943
Updated jaxrs generator to use additional properties instead of java
...
properties which are very difficult to set from maven
2015-12-16 21:41:43 -05:00
hacki11
5f13484157
- add downloadImage to Petstore
...
- fixed equal instead of ':' after Content-Disposition
- added definition of file (swagger-maven-plugin generates them)
2015-12-17 00:14:21 +01:00
Tomek Cejner
5a1c6e6c17
Updated samples, and cartfile
2015-12-16 21:55:31 +01:00
xhh
cc408a0dd7
Add unit tests to Javascript Petstore sample
2015-12-17 00:32:50 +08:00
xhh
2c1d8b19d2
Make Javascript client a Node.js (NPM) module
2015-12-16 23:51:48 +08:00
Tomek Cejner
10885790f8
Bumped alamofire to 3.1.x
2015-12-16 14:56:37 +01:00
xhh
625e712d7b
Javascript: add package.json
2015-12-16 19:57:44 +08:00
xhh
199c4f70ad
Add some config options to Javascript client codegen
2015-12-16 19:57:44 +08:00
wing328
0078dc11d1
Merge pull request #1703 from evigeant/feature/simple-jaxrs-serialization
...
Simplify Jersey and Jersey2 client serialization
2015-12-16 11:32:11 +08:00
hacki11
322e7a4b4b
[C#] fix filename and Content-Disposition parsing on FileStream
2015-12-15 23:33:48 +01:00
xhh
3f3e444ab1
Some clean-ups for the Javascript client codegen
2015-12-15 23:00:09 +08:00
wing328
89f269969d
Merge pull request #1716 from wing328/csharp_config_remove_static
...
[C#] remove some static methods in configuration
2015-12-15 19:51:29 +08:00
Kirill Vlasov
4ed0173a21
Fixing squid:S2057 - Serializable classes should have a version id
2015-12-15 15:03:33 +05:00
Artyom
b1869c1cae
Escape \r in XML comments
...
Workaround for #1336
2015-12-15 11:21:20 +02:00
Kirill Vlasov
49a6d0e6c1
Fixing squid:S1161 - @Override annotation should be used on any method overriding (since Java 5) or implementing (since Java 6) another one
2015-12-15 14:09:31 +05:00
Artyom
fbf4d0e419
Fixed ArgumentOutOfRangeException
...
If the list is empty you get the ArgumentOutOfRangeException when calling flattenString.Remove(flattenString.Length - 1).
Also using a StringBuilder is the prefered way to concatenate strings in a loop.
2015-12-15 10:51:04 +02:00
wing328
b01b414aae
add constructor to configuration
2015-12-14 22:26:32 +08:00
wing328
f03bc1f3bc
remove some static methods in configuration
2015-12-14 16:07:41 +08:00
wing328
2a5b96dbcf
Merge pull request #1698 from xhh/ruby-config
...
Ruby client: allow setting Configuration in ApiClient
2015-12-14 15:14:08 +08:00
wing328
99c40ae8a0
Merge pull request #1706 from mirthy/issue-1705
...
[C#] Fix date-time serialization to be ISO 8601
2015-12-14 15:05:07 +08:00
wing328
0d3fdba764
Merge pull request #1714 from wing328/ruby_sinatra_fix
...
[Ruby][Sinatra] fix bug with adding routes and add swagger.yaml
2015-12-14 11:32:28 +08:00
wing328
909ec298af
update regex to non-greedy match
2015-12-13 18:18:49 +08:00
wing328
1dd05bb90f
add swagger.yaml to ruby sinatra
2015-12-13 17:39:52 +08:00
wing328
bef2dac022
fix add route in sinatra
2015-12-13 17:22:30 +08:00
xhh
ddc4b0a548
Ruby: place properties on separate lines with description
2015-12-12 21:33:32 +08:00
Jeff Kwan
e0582ae912
Added the ability to customize the DateTimeFormat
...
Updated Configuration to have a DateTimeFormat
Added Unit Tests for Configuration.DateTimeFormat
Cleaned up namespaces in SwaggerClientTest
Added an embedded resource for testing uploads
2015-12-11 18:28:37 -05:00
evigeant
8fc27b5f0c
Fixed a bug where the JSON.mustache file was removed from the jersey2
...
code generation
2015-12-11 12:57:05 -05:00
wing328
2a8afbec8d
Merge pull request #1697 from wing328/objc_minor_style
...
[ObjC] minor style change for objc client
2015-12-11 14:43:38 +08:00
wing328
207b14283c
Merge pull request #1702 from wing328/php_profile
...
[PHP] add Php profiler for petstore sample
2015-12-11 12:29:17 +08:00
wing328
5ea073816d
Merge pull request #1693 from xhh/clojure-json-mime
...
[Clojure] Use case-insensitive checking on JSON MIME in Clojure client
2015-12-11 11:52:11 +08:00
Jeff Kwan
23fa84bff8
Add some reasonable comments to this
2015-12-10 20:03:29 -05:00
Jeff Kwan
cf3144d31f
[C#] Fix date-time serialization to be ISO 8601
...
Fix the date-time serialization so that it's actually ISO 8601
compliant, currently it generates a date-time string
Issue #1705
2015-12-10 19:56:10 -05:00
evigeant
0f67be5590
Simplified Jersey2 java client by letting Jersey do most serialization
...
and deserialization
2015-12-10 10:45:46 -05:00
evigeant
ee39977726
Let Jersey do the serialization and deserialization (including JSON)
2015-12-10 10:43:28 -05:00
evigeant
84ee958117
Simplified Jersey ApiClient by delegating much serialization to Jersey
2015-12-10 09:21:53 -05:00
wing328
9faf6f4068
add php profiler for petstore, fix empty/null string check
2015-12-10 18:55:28 +08:00
wing328
1bab13ab27
Merge pull request #1689 from xhh/java-json-mime
...
[Java] Improve the checking of JSON MIME
2015-12-10 17:22:40 +08:00
wing328
83dc5393cb
Merge pull request #1625 from davidkiss/master
...
adding support for both Java client using Netflix Feign and JMeter tests
2015-12-10 16:07:48 +08:00
xhh
e9ef143d8f
Ruby client: allow setting Configuration in ApiClient
...
Removed the singleton design from the Configuration class.
Added a `config` field to ApiClient to hold the settings the ApiClient
uses.
2015-12-10 15:25:07 +08:00
wing328
75a1f97a1e
minor style change for objc client
2015-12-10 15:21:52 +08:00
wing328
b2b06d72d5
Merge pull request #1685 from mateuszmackowiak/master
...
Support for extended 'application/json' HeaderAccept types
2015-12-10 14:52:05 +08:00
wing328
2b6b500c35
Merge pull request #1688 from wing328/objc_model_default_value
...
[ObjC] add default value to ObjC model properties
2015-12-10 14:17:16 +08:00
wing328
1241cdc8aa
Merge pull request #1687 from wing328/python_default_value
...
[Python] add default value to python model's properties
2015-12-10 14:09:29 +08:00
David Kiss
0d19b30c99
using isBodyParam instead of vendorExtention.x-isBody
2015-12-09 23:12:42 -05:00
wing328
ae17f97c99
Merge pull request #1537 from lugaru1234/ensureUniqueParamsRefactor
...
Code refactoring: ensureUniqueParams default value has been moved from description to the defaultValue field
2015-12-09 23:02:20 +08:00
xhh
63092b8923
Clojure client: use case-insensitive checking on JSON MIME
2015-12-09 22:55:49 +08:00
wing328
7642314b20
Merge pull request #1690 from thibaultclem/master
...
[Javascript] Fix syntax issue when generating Javascript client operation without parameters
2015-12-09 18:01:54 +08:00
wing328
fcd3d3dce1
Merge pull request #1683 from xhh/ruby-default-value
...
[Ruby] Add default value to Ruby model
2015-12-09 17:15:00 +08:00
thibaultclem
8e0816b5dd
Fix syntax issue when generating Javascript client operation without parameters
2015-12-09 16:11:08 +07:00
xhh
be0bc71c86
Improve checking of JSON MIME in Java default and jersey2
...
to support suffix like charset in "application/json; charset=UTF8"
2015-12-09 16:30:55 +08:00
wing328
e767a7d6d8
add default value to objc model properties
2015-12-09 16:21:00 +08:00
xhh
921659be5c
Improve checking of JSON MIME in Java okhttp-gson client
...
to support suffix like charset in "application/json; charset=UTF8"
2015-12-09 16:09:15 +08:00
wing328
36dfa15f93
Merge pull request #1680 from wing328/php_default_value
...
[PHP] add default value to PHP model
2015-12-09 15:39:34 +08:00
wing328
bf3c1d36d5
add default value to python model
2015-12-09 15:34:39 +08:00
xhh
4fdaeb7371
Improve checking of JSON MIME
2015-12-09 12:38:38 +08:00
xhh
b896c9169a
Add comments to model classes in Ruby client
2015-12-09 11:30:48 +08:00
xhh
21bd4fbbc1
Add default value to Ruby model
2015-12-09 11:30:09 +08:00
wing328
0dd2ebc78e
Merge pull request #1679 from wing328/csharp_default_value
...
[C#] add default member's value for C# models
2015-12-09 10:43:26 +08:00
wing328
f2af05737a
Merge pull request #1677 from xhh/ruby-api-with-http-info
...
Added with-http-info API methods to Ruby client
2015-12-09 10:34:03 +08:00
Mateusz Mackowiak
a01dfb693b
Support for extended 'application/json' HeaderAccept types
2015-12-08 18:52:59 +01:00
wing328
258bb27f30
Merge pull request #1672 from wing328/php_add_http_info
...
[PHP] add `WithHttpInfo` method to return HTTP status code and response headers
2015-12-08 18:31:43 +08:00
wing328
2e6da5c0d2
Merge pull request #1678 from lmikkelsen/qt5-include
...
Replace #import with #include in the Qt5 generator
2015-12-08 17:00:52 +08:00
wing328
4b656c516f
add default value to php model
2015-12-08 15:59:46 +08:00
wing328
b122107a80
Merge pull request #1653 from ianmcorvidae/clojure-tweaks
...
Clojure client: docstrings tweaks
2015-12-08 15:21:45 +08:00
wing328
f9f0992cc8
add default member's value for C# models
2015-12-08 15:09:30 +08:00
Lars Mikkelsen
0cef7116e8
Replace #import with #include in the Qt5 generator
...
The SWGHelpers.cpp file uses non-standard #import statements. This
causes the following error when built using Visual Studio 2013:
SWGHelpers.cpp(4): fatal error C1083: Cannot open type library file:
'c:\qt\qt5.5.1\5.5\msvc2013_64\include\qtcore\qdebug': Error loading
type library/DLL.
2015-12-07 23:30:37 -05:00
David Kiss
1723078508
added support in feign for binary uploads
2015-12-07 22:34:38 -05:00
xhh
07de03c09b
Return data before response status code and headers
2015-12-07 16:10:24 +08:00
xhh
66112d9eb5
Added with-http-info API methods to Ruby client
...
to allow accessing response status code and headers, and removed the methods of
recording last response info from ApiClient.
2015-12-07 15:48:59 +08:00
David Kiss
eb4acd0971
added unit tests to feign client
2015-12-07 01:13:20 -05:00
xhh
80ed75eef0
Add more javadoc to Java okhttp-gson client
2015-12-07 12:23:50 +08:00
xhh
b1bc75189a
Add WithHttpInfo API methods to Java okhttp-gson client
...
to allow accessing response status code and headers
and removed the methods of recording last response info from
ApiClient.
2015-12-07 11:17:32 +08:00
wing328
c5a48d9891
Merge pull request #1664 from xhh/clojure-resp-info
...
Support accessing response status code and headers in Clojure client
2015-12-07 10:55:14 +08:00
wing328
e2679b2aa7
Merge pull request #1671 from jfiala/master
...
Add basic Javascript SDK support
2015-12-07 10:35:02 +08:00
wing328
340e60002e
more style change for php client
2015-12-07 00:52:30 +08:00