GitLabApiForm |
GitLabApiForm.withParam(String name,
Object value) |
Fluent method for adding query and form parameters to a get() or post() call.
|
GitLabApiForm |
GitLabApiForm.withParam(String name,
Object value,
boolean required) |
Fluent method for adding query and form parameters to a get() or post() call.
|
GitLabApiForm |
GitLabApiForm.withParam(String name,
Date date) |
Fluent method for adding Date query and form parameters to a get() or post() call.
|
GitLabApiForm |
GitLabApiForm.withParam(String name,
Date date,
boolean required) |
Fluent method for adding Date query and form parameters to a get() or post() call.
|
<T> GitLabApiForm |
GitLabApiForm.withParam(String name,
List<T> values) |
Fluent method for adding a List type query and form parameters to a get() or post() call.
|
<T> GitLabApiForm |
GitLabApiForm.withParam(String name,
List<T> values,
boolean required) |
Fluent method for adding a List type query and form parameters to a get() or post() call.
|
GitLabApiForm |
GitLabApiForm.withParam(String name,
Map<String,?> variables,
boolean required) |
Fluent method for adding an array of hash type query and form parameters to a get() or post() call.
|
GitLabApiForm |
GitLabApiForm.withParam(String name,
AccessLevel level) |
Fluent method for adding AccessLevel query and form parameters to a get() or post() call.
|
GitLabApiForm |
GitLabApiForm.withParam(String name,
AccessLevel level,
boolean required) |
Fluent method for adding AccessLevel query and form parameters to a get() or post() call.
|
GitLabApiForm |
GitLabApiForm.withParam(List<Variable> variables) |
Fluent method for adding a List<Variable> type query and form parameters to a get(), post(), or put() call.
|