mirror of https://github.com/tasks/tasks
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.
14 lines
325 B
Java
14 lines
325 B
Java
15 years ago
|
package com.todoroo.andlib.service;
|
||
|
|
||
|
import java.io.IOException;
|
||
|
|
||
|
/**
|
||
|
* 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, String data) throws IOException;
|
||
|
}
|