You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tasks/api/src/com/todoroo/andlib/service/RestClient.java

16 lines
365 B
Java

package com.todoroo.andlib.service;
import java.io.IOException;
import org.apache.http.HttpEntity;
/**
* RestClient stub invokes the HTML requests as desired
*
* @author Tim Su <tim@todoroo.com>
*
*/
public interface RestClient {
public String get(String url) throws IOException;
public String post(String url, HttpEntity data) throws IOException;
}