Package com.baidu.disconf.core.common.restful

Source Code of com.baidu.disconf.core.common.restful.RestfulFactory

package com.baidu.disconf.core.common.restful;

import com.baidu.disconf.core.common.restful.impl.RestfulMgrImpl;
import com.baidu.disconf.core.common.restful.retry.impl.RetryStrategyRoundBin;

/**
*
* @author liaoqiqi
* @version 2014-8-4
*/
public class RestfulFactory {

    /**
     * 获取一个默认的抓取器
     *
     * @return
     * @throws Exception
     */
    public static RestfulMgr getRestfulMgrNomal() throws Exception {

        RestfulMgr restfulMgr = new RestfulMgrImpl(new RetryStrategyRoundBin());

        restfulMgr.init();

        return restfulMgr;
    }
}
TOP

Related Classes of com.baidu.disconf.core.common.restful.RestfulFactory

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.