Java tutorial
/*Copyright (C) 2012 Longerian (http://www.longerian.me) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.*/ package org.rubychina.android.api; import java.util.HashMap; import java.util.Map; import java.util.concurrent.ThreadPoolExecutor; import org.apache.http.Header; import org.apache.http.client.methods.HttpPost; import org.apache.http.impl.client.BasicCookieStore; import org.rubychina.android.RCApplication; import org.rubychina.android.api.request.RCAPIRequest; import org.rubychina.android.api.response.RCAPIResponse; import yek.api.ApiClient; import yek.api.parser.Parser; import yek.cache.Cache; import android.content.Context; public class RCAPIClient extends ApiClient<RCAPIContext, RCAPIResponse, RCAPIRequest<? extends RCAPIResponse>> implements RCAPIConstant, RCAPIContext { private static final String TAG = "RCAPIClient"; private Context mContext; public RCAPIClient(Context context, Parser parser, ThreadPoolExecutor threadPool, Cache cache) { super(context, parser, threadPool, cache, new BasicCookieStore()); mContext = context; } @Override protected Header[] makeRequestHeaders(RCAPIRequest<? extends RCAPIResponse> request) { //NOTE: if there's public headers for this api request, then initialize them here. Otherwise just leave it empty like code below. HttpPost httpPost = new HttpPost(); return httpPost.getAllHeaders(); } @Override protected Map<String, String> makeRequestParam(RCAPIRequest<? extends RCAPIResponse> request) { Map<String, String> param = new HashMap<String, String>(); param.putAll(request.getTextParams(getApiContext())); return param; } @Override public Context getContext() { return mContext; } @Override public String getParam(String arg0) { // NOTE this method is not used return null; } @Override public String getServer() { return SERVER; } @Override public String getToken() { return ((RCApplication) mContext.getApplicationContext()).getToken(); } @Override public RCAPIContext getApiContext() { return this; } }