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

play.modules.facebook.Parameter Maven / Gradle / Ivy

package play.modules.facebook;

import java.util.HashMap;
import java.util.Map;

/**
 *
 * @author Eric Jacob
 */
public class Parameter {

    private Map parameters = null;

    private Parameter(String name, String value) {
        this.parameters = new HashMap();
        this.parameters.put(name, value);
    }

    public static Parameter with(String name, String value) {
        return new Parameter(name, value);
    }

    public Parameter and(String name, String value) {
        this.parameters.put(name, value);
        return this;
    }

    public Map parameters() {
        return this.parameters;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy