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

com.belerweb.social.SDK Maven / Gradle / Ivy

There is a newer version: 0.0.5
Show newest version
package com.belerweb.social;

import java.util.List;

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

import com.belerweb.social.exception.SocialException;
import com.belerweb.social.http.Http;
import com.belerweb.social.http.HttpException;

public abstract class SDK {

  public String get(String url, List params) {
    try {
      return Http.get(url, params);
    } catch (HttpException e) {
      throw new SocialException(e);
    }
  }

  public String get(String url) {
    return get(url, null);
  }

  public String post(String url, List params) {
    try {
      return Http.post(url, params);
    } catch (HttpException e) {
      throw new SocialException(e);
    }
  }

  public String post(String url) {
    return post(url, null);
  }

  public void addParameter(List params, String name, Object value) {
    if (value == null) {
      throw new SocialException("Parameter " + name + " must not be null.");
    }
    params.add(new BasicNameValuePair(name, value.toString()));
  }

  public void addNotNullParameter(List params, String name, Object value) {
    if (value != null) {
      params.add(new BasicNameValuePair(name, value.toString()));
    }
  }

  public void addTrueParameter(List params, String name, Boolean value) {
    if (Boolean.TRUE.equals(value)) {
      params.add(new BasicNameValuePair(name, value.toString()));
    }
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy