Back to project page Mamytas.
The source code is released under:
GNU General Public License
If you think the Android project Mamytas listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package mn.aug.restfulandroid.rest; // w ww .j a v a 2 s . co m import android.content.Context; import java.net.URI; import java.util.List; import java.util.Map; import mn.aug.restfulandroid.rest.resource.Listw; /** * Created by Paul on 11/11/2014. */ public class DeleteListRestMethod extends AbstractRestMethod<Listw> { private Context mContext; private String address="http://paultpt-wunderlist.rhcloud.com/"; private static URI delete_URI; private Map<String, List<String>> headers; private byte[] body; private long id=0; public DeleteListRestMethod(Context context, Map<String, List<String>> headers,byte[] body, long id){ mContext = context.getApplicationContext(); this.headers = headers; this.body=body; this.id=id; address=address+id; delete_URI= URI.create(address); } @Override protected Request buildRequest() { Request request = new Request(RestMethodFactory.Method.DELETE, delete_URI, headers, body); return request; } @Override protected Listw parseResponseBody(String responseBody) throws Exception { return null; } @Override protected Context getContext() { return mContext; } }