Profiler.java
1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package retrofit;
public abstract interface Profiler<T>
{
public abstract void afterCall(RequestInformation paramRequestInformation, long paramLong, int paramInt, T paramT);
public abstract T beforeCall();
public static final class RequestInformation
{
private final String baseUrl;
private final long contentLength;
private final String contentType;
private final String method;
private final String relativePath;
public RequestInformation(String paramString1, String paramString2, String paramString3, long paramLong, String paramString4)
{
this.method = paramString1;
this.baseUrl = paramString2;
this.relativePath = paramString3;
this.contentLength = paramLong;
this.contentType = paramString4;
}
public final String getBaseUrl()
{
return this.baseUrl;
}
public final long getContentLength()
{
return this.contentLength;
}
public final String getContentType()
{
return this.contentType;
}
public final String getMethod()
{
return this.method;
}
public final String getRelativePath()
{
return this.relativePath;
}
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/retrofit/Profiler.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/