55 lines
1.0 KiB
Java
55 lines
1.0 KiB
Java
package com.alibaba.sdk.android.oss.model;
|
|
|
|
import java.util.Map;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class OSSResult {
|
|
private int a;
|
|
private Map<String, String> b;
|
|
private String c;
|
|
private Long d;
|
|
private Long e;
|
|
|
|
public void a(int i) {
|
|
this.a = i;
|
|
}
|
|
|
|
public String b() {
|
|
return this.c;
|
|
}
|
|
|
|
public Long c() {
|
|
return this.e;
|
|
}
|
|
|
|
public String toString() {
|
|
return String.format("OSSResult<%s>: \nstatusCode:%d,\nresponseHeader:%s,\nrequestId:%s", super.toString(), Integer.valueOf(this.a), this.b.toString(), this.c);
|
|
}
|
|
|
|
public void a(Map<String, String> map) {
|
|
this.b = map;
|
|
}
|
|
|
|
public void b(Long l) {
|
|
if (l == null || l.longValue() == 0) {
|
|
return;
|
|
}
|
|
this.e = l;
|
|
}
|
|
|
|
public void a(String str) {
|
|
this.c = str;
|
|
}
|
|
|
|
public Long a() {
|
|
return this.d;
|
|
}
|
|
|
|
public void a(Long l) {
|
|
if (l == null || l.longValue() == 0) {
|
|
return;
|
|
}
|
|
this.d = l;
|
|
}
|
|
}
|