com.iloomo.net.BaseRequest.java Source code

Java tutorial

Introduction

Here is the source code for com.iloomo.net.BaseRequest.java

Source

/*
 * Copyright 2011 meiyitian
 * Blog  :http://www.cnblogs.com/meiyitian
 * Email :haoqqemail@qq.com
 *
 * 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 com.iloomo.net;

import java.io.Serializable;

import org.apache.http.client.methods.HttpUriRequest;

/**
 * 
 * 1??
 * 2?
 * 3??
 * 4?activity???activity
 * 5??? ??
 * @author zxy
 *
 */
public class BaseRequest implements Runnable, Serializable {
    //static HttpClient httpClient = null;
    HttpUriRequest request = null;

    /**
     * 
     */
    private static final long serialVersionUID = 1L;
    //   protected ParseHandler handler = null;
    protected String url = null;
    /**
     * default is 5 ,to set .
     */
    protected int connectTimeout = 5000;
    /**
     * default is 5 ,to set .
     */
    protected int readTimeout = 20000;
    //   protected RequestResultCallback requestCallback = null;

    @Override
    public void run() {

    }

    protected void setConnectTimeout(int connectTimeout) {
        this.connectTimeout = connectTimeout;
    }

    protected void setReadTimeout(int readTimeout) {
        this.readTimeout = readTimeout;
    }

    public HttpUriRequest getRequest() {
        return request;
    }

    //   protected boolean isCookieTimeOut(String json){
    //      boolean result = false;
    //      try{
    //         JSONParser parser = new JSONParser();
    //         JSONObject obj = (JSONObject) parser.parse(json);
    //         int status = 0;
    //         if(obj.containsKey("status")){
    //            status = Integer.parseInt(obj.get("status").toString());
    //         }
    //         if(status == 1001){
    //            result = true;
    //         }
    //      }catch(Exception e){
    //         e.printStackTrace();
    //      }
    //      return result;
    //   }

}