admin
2021-03-09 6aed6290ad05fe2aa125bb8e804e2e8c2f13a613
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.lcjian.library.okhttp.builder;
 
 
import com.lcjian.library.okhttp.OkHttpUtils;
import com.lcjian.library.okhttp.request.OtherRequest;
import com.lcjian.library.okhttp.request.RequestCall;
 
/**
 * Created by zhy on 16/3/2.
 */
public class HeadBuilder extends GetBuilder
{
    @Override
    public RequestCall build()
    {
        return new OtherRequest(null, null, OkHttpUtils.METHOD.HEAD, url, tag, params, headers,id).build();
    }
}