77 lines
2.5 KiB
Java
77 lines
2.5 KiB
Java
package com.kofax.kmc.klo.logistics.webservice;
|
|
|
|
import java.util.Hashtable;
|
|
import o.C15281gmQ;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class WscProfileRequest extends WscRequest {
|
|
public static final int PROPERTY_COUNT = 1;
|
|
private String wscClientId;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public interface PROFILE_INDEXES {
|
|
public static final int PROFILE_CLIENT_ID = 0;
|
|
}
|
|
|
|
private void initialize(String str) {
|
|
super.initialize();
|
|
setWscClientId(str);
|
|
}
|
|
|
|
public static WscProfileRequest initializeRequest(String str) {
|
|
WscProfileRequest wscProfileRequest = new WscProfileRequest();
|
|
wscProfileRequest.initialize(str);
|
|
return wscProfileRequest;
|
|
}
|
|
|
|
@Override // com.kofax.kmc.klo.logistics.webservice.WscRequest, com.kofax.kmc.klo.logistics.webservice.KofaxWebServiceObjectBase, o.InterfaceC15276gmJ
|
|
public int getPropertyCount() {
|
|
return super.getPropertyCount() + 1;
|
|
}
|
|
|
|
@Override // com.kofax.kmc.klo.logistics.webservice.WscRequest, com.kofax.kmc.klo.logistics.webservice.KofaxWebServiceObjectBase, o.InterfaceC15276gmJ
|
|
public Object getProperty(int i) {
|
|
if (i > 0) {
|
|
return super.getProperty(i - 1);
|
|
}
|
|
if (i != 0) {
|
|
return null;
|
|
}
|
|
return getWscClientId();
|
|
}
|
|
|
|
@Override // com.kofax.kmc.klo.logistics.webservice.WscRequest, com.kofax.kmc.klo.logistics.webservice.KofaxWebServiceObjectBase, o.InterfaceC15276gmJ
|
|
public void getPropertyInfo(int i, Hashtable hashtable, C15281gmQ c15281gmQ) {
|
|
if (i > 0) {
|
|
super.getPropertyInfo(i - 1, hashtable, c15281gmQ);
|
|
} else if (i == 0) {
|
|
c15281gmQ.m = "wscClientId";
|
|
c15281gmQ.k = C15281gmQ.j;
|
|
}
|
|
c15281gmQ.a(getProperty(i));
|
|
}
|
|
|
|
@Override // com.kofax.kmc.klo.logistics.webservice.WscRequest, com.kofax.kmc.klo.logistics.webservice.KofaxWebServiceObjectBase, o.InterfaceC15276gmJ
|
|
public void setProperty(int i, Object obj) {
|
|
if (i <= 0) {
|
|
String obj2 = obj != null ? obj.toString() : "";
|
|
if (i == 0) {
|
|
setWscClientId(obj2);
|
|
return;
|
|
}
|
|
return;
|
|
}
|
|
super.setProperty(i - 1, obj);
|
|
}
|
|
|
|
@Override // com.kofax.kmc.klo.logistics.webservice.WscRequest
|
|
public void setWscClientId(String str) {
|
|
this.wscClientId = str;
|
|
}
|
|
|
|
@Override // com.kofax.kmc.klo.logistics.webservice.WscRequest
|
|
public String getWscClientId() {
|
|
return this.wscClientId;
|
|
}
|
|
}
|