All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.houbbbbb.sso.util.PostParam Maven / Gradle / Ivy

The newest version!
package com.github.houbbbbb.sso.util;

import org.apache.http.NameValuePair;
import org.apache.http.message.BasicNameValuePair;

import java.util.ArrayList;
import java.util.List;

/**
 * @author : hbw
 * @desctiption :
 * @date : 2020-05-25 14:07
 */
public class PostParam {
    private List nameValuePairList;
    public PostParam(){
        nameValuePairList = new ArrayList();
    }

    public void add(String key, String value){
        nameValuePairList.add(new BasicNameValuePair(key, value));
    }

    public List getParam(){
        return nameValuePairList;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy