Merge pull request #1271 from laurentvdl/master

implement form parameter support using Angular $httpParamSerializer
This commit is contained in:
wing328
2015-09-26 09:37:40 +08:00
7 changed files with 292 additions and 272 deletions

View File

@@ -77,4 +77,13 @@ public class CodegenOperation {
return nonempty(pathParams);
}
/**
* Check if there's at least one form parameter
*
* @return true if any form parameter exists, false otherwise
*/
public boolean getHasFormParams() {
return nonempty(formParams);
}
}