Files
rr3-apk/decompiled/sources/com/ea/nimble/pushtng/NimbleAndroidHttpResponse.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

75 lines
2.0 KiB
Java

package com.ea.nimble.pushtng;
import com.ea.eadp.http.models.HttpResponse;
import com.ea.nimble.Log;
import java.util.Map;
/* loaded from: classes2.dex */
public class NimbleAndroidHttpResponse implements HttpResponse {
private String body;
private int code;
private Map<String, String> headers;
private String message;
private String url;
@Override // com.ea.eadp.http.models.HttpResponse
public String getUrl() {
Log.Helper.LOGPUBLICFUNC(this);
return this.url;
}
@Override // com.ea.eadp.http.models.HttpResponse
public void setUrl(String str) {
Log.Helper.LOGPUBLICFUNC(this);
this.url = str;
}
@Override // com.ea.eadp.http.models.HttpResponse
public int getCode() {
Log.Helper.LOGPUBLICFUNC(this);
return this.code;
}
@Override // com.ea.eadp.http.models.HttpResponse
public void setCode(int i) {
Log.Helper.LOGPUBLICFUNC(this);
this.code = i;
}
@Override // com.ea.eadp.http.models.HttpResponse
public String getMessage() {
Log.Helper.LOGPUBLICFUNC(this);
return this.message;
}
@Override // com.ea.eadp.http.models.HttpResponse
public void setMessage(String str) {
Log.Helper.LOGPUBLICFUNC(this);
this.message = str;
}
@Override // com.ea.eadp.http.models.HttpResponse
public String getBody() {
Log.Helper.LOGPUBLICFUNC(this);
return this.body;
}
@Override // com.ea.eadp.http.models.HttpResponse
public void setBody(String str) {
Log.Helper.LOGPUBLICFUNC(this);
this.body = str;
}
@Override // com.ea.eadp.http.models.HttpResponse
public Map<String, String> getHeaders() {
Log.Helper.LOGPUBLICFUNC(this);
return this.headers;
}
@Override // com.ea.eadp.http.models.HttpResponse
public void setHeaders(Map<String, String> map) {
Log.Helper.LOGPUBLICFUNC(this);
this.headers = map;
}
}