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; //from w w w . ja v a 2 s.c o m import android.content.Context; import com.fasterxml.jackson.core.JsonParseException; import com.fasterxml.jackson.databind.JsonMappingException; import com.fasterxml.jackson.databind.ObjectMapper; import java.io.IOException; import java.net.URI; import java.util.List; import java.util.Map; import mn.aug.restfulandroid.rest.resource.Timer; /** * Created by Paul on 17/11/2014. */ public class PostTimerRestMethod extends AbstractRestMethod<Timer> { private Context mContext; private String address="http://paultpt-wunderlist.rhcloud.com/"; private static URI put_URI; private Map<String, List<String>> headers; private byte[] body; private long id=0; public PostTimerRestMethod(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+"/timers"; put_URI= URI.create(address); } @Override protected Request buildRequest() { Request request = new Request(RestMethodFactory.Method.POST, put_URI, headers, body); return request; } @Override protected Timer parseResponseBody(String responseBody) throws Exception { Timer timer=null; if (responseBody!= null && responseBody.length()>0) { try { final ObjectMapper mapper = new ObjectMapper(); timer = mapper.readValue(responseBody, Timer.class); } catch (JsonParseException e) { e.printStackTrace(); } catch (JsonMappingException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } } return timer; } @Override protected Context getContext() { return mContext; } }