Shyri Villar
5cfcb0b60b
fixed response parsing in post request template [android-volley]
2015-12-29 15:45:04 +01:00
Shyri Villar
2e4f6dc0a1
Added error listeners in api template [android-volley]
2015-12-29 15:45:03 +01:00
Shyri Villar
cfdf2bc3b8
fix returnContainer [android-volley]
2015-12-29 15:45:02 +01:00
Shyri Villar
b55f8802ac
throw volley error on body post null [android-volley]
2015-12-29 15:45:01 +01:00
Shyri Villar
f5aba6d0a5
removed faulty setuseragent [android-volley]
2015-12-29 15:45:00 +01:00
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
564f6e2bb5
Merge pull request #1767 from xhh/java-simple-profiling
...
[Java] Add simple profiling for Java Petstore sample
2015-12-29 16:34:55 +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
wing328
745e4f7dc2
Merge pull request #1771 from wing328/perl_simple_model
...
[Perl] remove base_object from Perl model
2015-12-29 12:54:55 +08: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
7b10023784
update perl sample
2015-12-28 16:12:18 +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
Arne Jørgensen
84c35bd0cb
Regenerated PHP petstore sample.
2015-12-27 15:29:08 +01: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
xhh
a2c020f9e8
Add simple profiling for Java Petstore sample
2015-12-26 16:48:49 +08: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
wing328
732212cdb2
Merge pull request #1763 from wing328/update_pom
...
Update pom to use latest core and parser
2015-12-24 14:31:40 +08:00
wing328
9181b6b0a7
update pom to use latest core and parser
2015-12-24 14:13:18 +08:00
Tony Tam
3e5f23dc7a
Merge pull request #1759 from ePaul/feature/1743-fix-gitignore-for-eclipse-settings
...
Fix #1743 by removing `*/` from the .settings ignore line.
2015-12-23 10:15:34 -08:00
Paŭlo Ebermann
f2a510912b
Fix #1743 by removing */ from the .settings ignore line.
...
`*/.settings` applies to just the directory below the current one, where there is no such file.
`.settings` applies to all files/directories named such in the whole project.
2015-12-23 19:12:03 +01:00
Tony Tam
609240c389
Merge pull request #1757 from swagger-api/issue-1756
...
Add binary, byte array properties
2015-12-23 05:59:33 -08:00