43 lines
876 B
Java
43 lines
876 B
Java
|
package com.huawei.hms.adapter;
|
||
|
|
||
|
import android.os.Parcelable;
|
||
|
import com.huawei.hms.core.aidl.IMessageEntity;
|
||
|
import com.huawei.hms.core.aidl.annotation.Packed;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
class CoreBaseRequest implements IMessageEntity {
|
||
|
|
||
|
@Packed
|
||
|
private String jsonHeader;
|
||
|
|
||
|
@Packed
|
||
|
private String jsonObject;
|
||
|
|
||
|
@Packed
|
||
|
private Parcelable parcelable;
|
||
|
|
||
|
public void setParcelable(Parcelable parcelable) {
|
||
|
this.parcelable = parcelable;
|
||
|
}
|
||
|
|
||
|
public void setJsonObject(String str) {
|
||
|
this.jsonObject = str;
|
||
|
}
|
||
|
|
||
|
public void setJsonHeader(String str) {
|
||
|
this.jsonHeader = str;
|
||
|
}
|
||
|
|
||
|
public Parcelable getParcelable() {
|
||
|
return this.parcelable;
|
||
|
}
|
||
|
|
||
|
public String getJsonObject() {
|
||
|
return this.jsonObject;
|
||
|
}
|
||
|
|
||
|
public String getJsonHeader() {
|
||
|
return this.jsonHeader;
|
||
|
}
|
||
|
}
|