Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,16 @@ public FormData(Query fields) {
this.fields = fields;
}

/**
* Returns the fields of this FormData instance.
*
* @return the fields
* @since 2.0.0
*/
public Query getFields() {
return fields;
}

/** Converts this FormData to a RequestEntity using UTF8 encoding. */
public RequestEntity toEntity() {
return HttpEntities.create(
Expand Down