253 lines
7.9 KiB
Java
253 lines
7.9 KiB
Java
package nano;
|
|
|
|
import com.google.protobuf.nano.CodedInputByteBufferNano;
|
|
import com.google.protobuf.nano.CodedOutputByteBufferNano;
|
|
import com.google.protobuf.nano.InternalNano;
|
|
import com.google.protobuf.nano.InvalidProtocolBufferNanoException;
|
|
import com.google.protobuf.nano.MessageNano;
|
|
import com.google.protobuf.nano.WireFormatNano;
|
|
import java.io.IOException;
|
|
|
|
/* compiled from: TbsSdkJava */
|
|
public interface CancelEntrustRequest {
|
|
|
|
/* compiled from: TbsSdkJava */
|
|
public static final class CancelEntrust_Request extends MessageNano {
|
|
|
|
private static volatile CancelEntrust_Request[] _emptyArray;
|
|
|
|
private int accid_;
|
|
|
|
private int bitField0_;
|
|
|
|
private long entrustNo_;
|
|
|
|
private String token_;
|
|
|
|
private int userid_;
|
|
|
|
private int zoneid_;
|
|
|
|
public CancelEntrust_Request() {
|
|
clear();
|
|
}
|
|
|
|
public static CancelEntrust_Request[] emptyArray() {
|
|
if (_emptyArray == null) {
|
|
synchronized (InternalNano.LAZY_INIT_LOCK) {
|
|
try {
|
|
if (_emptyArray == null) {
|
|
_emptyArray = new CancelEntrust_Request[0];
|
|
}
|
|
} catch (Throwable th) {
|
|
throw th;
|
|
}
|
|
}
|
|
}
|
|
return _emptyArray;
|
|
}
|
|
|
|
public static CancelEntrust_Request parseFrom(byte[] bArr) throws InvalidProtocolBufferNanoException {
|
|
return (CancelEntrust_Request) MessageNano.mergeFrom(new CancelEntrust_Request(), bArr);
|
|
}
|
|
|
|
public CancelEntrust_Request clear() {
|
|
this.bitField0_ = 0;
|
|
this.token_ = "";
|
|
this.userid_ = 0;
|
|
this.accid_ = 0;
|
|
this.zoneid_ = 0;
|
|
this.entrustNo_ = 0;
|
|
this.cachedSize = -1;
|
|
return this;
|
|
}
|
|
|
|
public CancelEntrust_Request clearAccid() {
|
|
this.accid_ = 0;
|
|
this.bitField0_ &= -5;
|
|
return this;
|
|
}
|
|
|
|
public CancelEntrust_Request clearEntrustNo() {
|
|
this.entrustNo_ = 0;
|
|
this.bitField0_ &= -17;
|
|
return this;
|
|
}
|
|
|
|
public CancelEntrust_Request clearToken() {
|
|
this.token_ = "";
|
|
this.bitField0_ &= -2;
|
|
return this;
|
|
}
|
|
|
|
public CancelEntrust_Request clearUserid() {
|
|
this.userid_ = 0;
|
|
this.bitField0_ &= -3;
|
|
return this;
|
|
}
|
|
|
|
public CancelEntrust_Request clearZoneid() {
|
|
this.zoneid_ = 0;
|
|
this.bitField0_ &= -9;
|
|
return this;
|
|
}
|
|
|
|
/* access modifiers changed from: protected */
|
|
public int computeSerializedSize() {
|
|
int computeSerializedSize = super.computeSerializedSize();
|
|
if ((this.bitField0_ & 1) != 0) {
|
|
computeSerializedSize += CodedOutputByteBufferNano.computeStringSize(1, this.token_);
|
|
}
|
|
if ((this.bitField0_ & 2) != 0) {
|
|
computeSerializedSize += CodedOutputByteBufferNano.computeUInt32Size(2, this.userid_);
|
|
}
|
|
if ((this.bitField0_ & 4) != 0) {
|
|
computeSerializedSize += CodedOutputByteBufferNano.computeFixed32Size(3, this.accid_);
|
|
}
|
|
if ((this.bitField0_ & 8) != 0) {
|
|
computeSerializedSize += CodedOutputByteBufferNano.computeUInt32Size(4, this.zoneid_);
|
|
}
|
|
if ((this.bitField0_ & 16) != 0) {
|
|
return computeSerializedSize + CodedOutputByteBufferNano.computeUInt64Size(5, this.entrustNo_);
|
|
}
|
|
return computeSerializedSize;
|
|
}
|
|
|
|
public int getAccid() {
|
|
return this.accid_;
|
|
}
|
|
|
|
public long getEntrustNo() {
|
|
return this.entrustNo_;
|
|
}
|
|
|
|
public String getToken() {
|
|
return this.token_;
|
|
}
|
|
|
|
public int getUserid() {
|
|
return this.userid_;
|
|
}
|
|
|
|
public int getZoneid() {
|
|
return this.zoneid_;
|
|
}
|
|
|
|
public boolean hasAccid() {
|
|
if ((this.bitField0_ & 4) != 0) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public boolean hasEntrustNo() {
|
|
if ((this.bitField0_ & 16) != 0) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public boolean hasToken() {
|
|
if ((this.bitField0_ & 1) != 0) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public boolean hasUserid() {
|
|
if ((this.bitField0_ & 2) != 0) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public boolean hasZoneid() {
|
|
if ((this.bitField0_ & 8) != 0) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public CancelEntrust_Request setAccid(int i10) {
|
|
this.accid_ = i10;
|
|
this.bitField0_ |= 4;
|
|
return this;
|
|
}
|
|
|
|
public CancelEntrust_Request setEntrustNo(long j10) {
|
|
this.entrustNo_ = j10;
|
|
this.bitField0_ |= 16;
|
|
return this;
|
|
}
|
|
|
|
public CancelEntrust_Request setToken(String str) {
|
|
str.getClass();
|
|
this.token_ = str;
|
|
this.bitField0_ |= 1;
|
|
return this;
|
|
}
|
|
|
|
public CancelEntrust_Request setUserid(int i10) {
|
|
this.userid_ = i10;
|
|
this.bitField0_ |= 2;
|
|
return this;
|
|
}
|
|
|
|
public CancelEntrust_Request setZoneid(int i10) {
|
|
this.zoneid_ = i10;
|
|
this.bitField0_ |= 8;
|
|
return this;
|
|
}
|
|
|
|
public void writeTo(CodedOutputByteBufferNano codedOutputByteBufferNano) throws IOException {
|
|
if ((this.bitField0_ & 1) != 0) {
|
|
codedOutputByteBufferNano.writeString(1, this.token_);
|
|
}
|
|
if ((this.bitField0_ & 2) != 0) {
|
|
codedOutputByteBufferNano.writeUInt32(2, this.userid_);
|
|
}
|
|
if ((this.bitField0_ & 4) != 0) {
|
|
codedOutputByteBufferNano.writeFixed32(3, this.accid_);
|
|
}
|
|
if ((this.bitField0_ & 8) != 0) {
|
|
codedOutputByteBufferNano.writeUInt32(4, this.zoneid_);
|
|
}
|
|
if ((this.bitField0_ & 16) != 0) {
|
|
codedOutputByteBufferNano.writeUInt64(5, this.entrustNo_);
|
|
}
|
|
super.writeTo(codedOutputByteBufferNano);
|
|
}
|
|
|
|
public static CancelEntrust_Request parseFrom(CodedInputByteBufferNano codedInputByteBufferNano) throws IOException {
|
|
return new CancelEntrust_Request().mergeFrom(codedInputByteBufferNano);
|
|
}
|
|
|
|
public CancelEntrust_Request mergeFrom(CodedInputByteBufferNano codedInputByteBufferNano) throws IOException {
|
|
while (true) {
|
|
int readTag = codedInputByteBufferNano.readTag();
|
|
if (readTag == 0) {
|
|
return this;
|
|
}
|
|
if (readTag == 10) {
|
|
this.token_ = codedInputByteBufferNano.readString();
|
|
this.bitField0_ |= 1;
|
|
} else if (readTag == 16) {
|
|
this.userid_ = codedInputByteBufferNano.readUInt32();
|
|
this.bitField0_ |= 2;
|
|
} else if (readTag == 29) {
|
|
this.accid_ = codedInputByteBufferNano.readFixed32();
|
|
this.bitField0_ |= 4;
|
|
} else if (readTag == 32) {
|
|
this.zoneid_ = codedInputByteBufferNano.readUInt32();
|
|
this.bitField0_ |= 8;
|
|
} else if (readTag == 40) {
|
|
this.entrustNo_ = codedInputByteBufferNano.readUInt64();
|
|
this.bitField0_ |= 16;
|
|
} else if (!WireFormatNano.parseUnknownField(codedInputByteBufferNano, readTag)) {
|
|
return this;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|