com.eg.agent.android.api.common.TransactionData Maven / Gradle / Ivy
package com.eg.agent.android.api.common;
import java.util.ArrayList;
public class TransactionData
{
private final long timestamp;
private final String url;
private final String httpMethod;
private final String carrier;
private final float time;
private final int statusCode;
private int errorCode;
private final Object errorCodeLock = new Object();
private final long bytesSent;
private final long bytesReceived;
private final String appData;
private final String wanType;
public TransactionData(String url, String httpMethod, String carrier, float time, int statusCode, int errorCode, long bytesSent, long bytesReceived, String appData, String wanType) {
int endPos = url.indexOf('?');
if (endPos < 0) {
endPos = url.indexOf(';');
if (endPos < 0) {
endPos = url.length();
}
}
String trimmedUrl = url.substring(0, endPos);
this.url = trimmedUrl;
this.httpMethod = httpMethod;
this.carrier = carrier;
this.time = time;
this.statusCode = statusCode;
this.errorCode = errorCode;
this.bytesSent = bytesSent;
this.bytesReceived = bytesReceived;
this.appData = appData;
this.wanType = wanType;
this.timestamp = System.currentTimeMillis();
}
public String getUrl() {
return this.url;
}
public String getHttpMethod() {
return this.httpMethod;
}
public String getCarrier() {
return this.carrier;
}
public int getStatusCode() {
return this.statusCode;
}
public int getErrorCode() {
synchronized (this.errorCodeLock) {
return this.errorCode;
}
}
public void setErrorCode(int errorCode) {
synchronized (this.errorCodeLock) {
this.errorCode = errorCode;
}
}
public long getBytesSent() {
return this.bytesSent;
}
public long getBytesReceived() {
return this.bytesReceived;
}
public String getAppData() {
return this.appData;
}
public String getWanType() {
return this.wanType;
}
public java.util.List asList() {
ArrayList r = new ArrayList();
r.add(this.url);
r.add(this.carrier);
r.add(Float.valueOf(this.time));
r.add(Integer.valueOf(this.statusCode));
r.add(Integer.valueOf(this.errorCode));
r.add(Long.valueOf(this.bytesSent));
r.add(Long.valueOf(this.bytesReceived));
r.add(this.appData);
return r;
}
public long getTimestamp() {
return this.timestamp;
}
public float getTime() {
return this.time;
}
public TransactionData clone() {
return new TransactionData(this.url, this.httpMethod, this.carrier, this.time, this.statusCode, this.errorCode, this.bytesSent, this.bytesReceived, this.appData, this.wanType);
}
public String toString()
{
return "TransactionData{timestamp=" + this.timestamp + ", url='" + this.url + '\'' + ", httpMethod='" + this.httpMethod + '\'' + ", carrier='" + this.carrier + '\'' + ", time=" + this.time + ", statusCode=" + this.statusCode + ", errorCode=" + this.errorCode + ", errorCodeLock=" + this.errorCodeLock + ", bytesSent=" + this.bytesSent + ", bytesReceived=" + this.bytesReceived + ", appData='" + this.appData + '\'' + ", wanType='" + this.wanType + '\'' + '}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy