68 lines
1.7 KiB
Java
68 lines
1.7 KiB
Java
|
package com.kofax.kmc.klo.logistics.data;
|
||
|
|
||
|
import com.kofax.kmc.kut.utilities.error.InternalError;
|
||
|
import com.kofax.kmc.kut.utilities.error.NullPointerException;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public class UserProfile implements Cloneable {
|
||
|
private String username = "";
|
||
|
private String password = "";
|
||
|
private String domain = "";
|
||
|
private String jr = "";
|
||
|
|
||
|
/* renamed from: clone, reason: merged with bridge method [inline-methods] */
|
||
|
public UserProfile m277clone() {
|
||
|
try {
|
||
|
return (UserProfile) super.clone();
|
||
|
} catch (CloneNotSupportedException unused) {
|
||
|
throw new InternalError("UserProfile: unexpected clone not supported exception");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public void setUsername(String str) {
|
||
|
a(str, "name");
|
||
|
this.username = str;
|
||
|
}
|
||
|
|
||
|
public void setPassword(String str) {
|
||
|
a(str, "password");
|
||
|
this.password = str;
|
||
|
}
|
||
|
|
||
|
public void setDomain(String str) {
|
||
|
a(str, "domain");
|
||
|
this.domain = str;
|
||
|
}
|
||
|
|
||
|
public void setUserEmailAddress(String str) {
|
||
|
a(str, "email address");
|
||
|
this.jr = str;
|
||
|
}
|
||
|
|
||
|
private void a(Object obj, String str) {
|
||
|
if (obj != null) {
|
||
|
return;
|
||
|
}
|
||
|
StringBuilder sb = new StringBuilder();
|
||
|
sb.append(str);
|
||
|
sb.append(" parameter is null");
|
||
|
throw new NullPointerException(sb.toString());
|
||
|
}
|
||
|
|
||
|
public String getUsername() {
|
||
|
return this.username;
|
||
|
}
|
||
|
|
||
|
public String getUserEmailAddress() {
|
||
|
return this.jr;
|
||
|
}
|
||
|
|
||
|
public String getPassword() {
|
||
|
return this.password;
|
||
|
}
|
||
|
|
||
|
public String getDomain() {
|
||
|
return this.domain;
|
||
|
}
|
||
|
}
|