what-the-bank/sources/com/kofax/kmc/kut/utilities/appstats/AppStatsSessionEvent.java

46 lines
1.1 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.kofax.kmc.kut.utilities.appstats;
/* loaded from: classes3.dex */
public class AppStatsSessionEvent {
private static final String TAG = "AppStatsSessionEvent";
private String response;
private String type;
public AppStatsSessionEvent() {
this.type = "";
this.response = "";
}
public AppStatsSessionEvent(String str) {
this.response = "";
this.type = str;
}
public AppStatsSessionEvent(String str, String str2) {
this.type = str;
this.response = str2;
}
public void setType(String str) {
if (str == null) {
throw new NullPointerException("setType: sessionType parameter cannot be null");
}
this.type = str;
}
public void setResponse(String str) {
if (str == null) {
throw new NullPointerException("setType: response parameter cannot be null");
}
this.response = str;
}
public String getType() {
return this.type;
}
public String getResponse() {
return this.response;
}
}