2 * Copyright © 2019 Damyan Ivanov.
3 * This file is part of MoLe.
4 * MoLe is free software: you can distribute it and/or modify it
5 * under the term of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your opinion), any later version.
9 * MoLe is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License terms for details.
14 * You should have received a copy of the GNU General Public License
15 * along with MoLe. If not, see <https://www.gnu.org/licenses/>.
18 package net.ktnx.mobileledger.utils;
20 import androidx.annotation.NonNull;
22 import java.io.UnsupportedEncodingException;
23 import java.net.URLEncoder;
24 import java.util.AbstractMap;
25 import java.util.ArrayList;
26 import java.util.List;
28 public class UrlEncodedFormData {
29 private List<AbstractMap.SimpleEntry<String,String>> pairs;
31 public UrlEncodedFormData() {
32 pairs = new ArrayList<>();
35 public void addPair(String name, String value) {
36 pairs.add(new AbstractMap.SimpleEntry<>(name, value));
40 public String toString() {
41 StringBuilder result = new StringBuilder();
44 for (AbstractMap.SimpleEntry<String,String> pair : pairs) {
53 result.append(URLEncoder.encode(pair.getKey(), "UTF-8"))
55 .append(URLEncoder.encode(pair.getValue(), "UTF-8"));
56 } catch (UnsupportedEncodingException e) {
61 return result.toString();