Skip to content
This repository has been archived by the owner on Aug 12, 2024. It is now read-only.

Commit

Permalink
fix: 9.0.71 compatible issues (part of)
Browse files Browse the repository at this point in the history
  • Loading branch information
ikechan8370 committed Jul 7, 2024
1 parent 59d762e commit 4016c05
Show file tree
Hide file tree
Showing 45 changed files with 1,215 additions and 124 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
package com.tencent.qphone.base.util;

public abstract class CodecWarpper {
public abstract void onResponse(int i2, Object obj, int i3);
// public abstract void onResponse(int i2, Object obj, int i3);

public abstract void onInvalidData(int i2, int i3, String str);

public abstract void onResponse(int i2, Object obj, int i3, byte[] bArr);

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.tencent.qqnt.aio.api;

import com.tencent.mobileqq.qroute.QRouteApi;
import com.tencent.qqnt.kernel.nativeinterface.Contact;
import com.tencent.qqnt.kernelpublic.nativeinterface.Contact;
import com.tencent.qqnt.kernel.nativeinterface.IOperateCallback;

public interface IAIOFileTransfer extends QRouteApi {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.tencent.qqnt.kernel.api.impl;

public class GroupService {
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package com.tencent.qqnt.kernel.nativeinterface;

import com.tencent.qqnt.kernelpublic.nativeinterface.Contact;

import java.util.ArrayList;


Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package com.tencent.qqnt.kernel.nativeinterface;

import com.tencent.qqnt.kernelpublic.nativeinterface.Contact;

import java.util.ArrayList;


Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
package com.tencent.qqnt.kernel.nativeinterface;

import java.util.ArrayList;

public class GroupMemberCommonListResult {
public long groupCode;
public int identifyFlag;
public long startUin;
public ArrayList<MemberCommonInfo> memberList = new ArrayList<>();
public String strErrorInfo = "";

public long getGroupCode() {
return this.groupCode;
}

public int getIdentifyFlag() {
return this.identifyFlag;
}

public ArrayList<MemberCommonInfo> getMemberList() {
return this.memberList;
}

public long getStartUin() {
return this.startUin;
}

public String getStrErrorInfo() {
return this.strErrorInfo;
}

public String toString() {
return "GroupMemberCommonListResult{groupCode=" + this.groupCode + ",startUin=" + this.startUin + ",identifyFlag=" + this.identifyFlag + ",memberList=" + this.memberList + ",strErrorInfo=" + this.strErrorInfo + ",}";
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
package com.tencent.qqnt.kernel.nativeinterface;

import java.util.ArrayList;

public class GroupMemberCommonReq {
public long groupCode;
public int sourceType;
public String startUin = "";
public String identifyFlag = "";
public ArrayList<Long> uinList = new ArrayList<>();
public MemberCommonInfoFilter memberCommonFilter = new MemberCommonInfoFilter();
public String memberNum = "";
public String filterMethod = "";
public String onlineFlag = "";
public String realSpecialTitleFlag = "";

public String getFilterMethod() {
return this.filterMethod;
}

public long getGroupCode() {
return this.groupCode;
}

public String getIdentifyFlag() {
return this.identifyFlag;
}

public MemberCommonInfoFilter getMemberCommonFilter() {
return this.memberCommonFilter;
}

public String getMemberNum() {
return this.memberNum;
}

public String getOnlineFlag() {
return this.onlineFlag;
}

public String getRealSpecialTitleFlag() {
return this.realSpecialTitleFlag;
}

public int getSourceType() {
return this.sourceType;
}

public String getStartUin() {
return this.startUin;
}

public ArrayList<Long> getUinList() {
return this.uinList;
}

public void setFilterMethod(String str) {
this.filterMethod = str;
}

public void setGroupCode(long j2) {
this.groupCode = j2;
}

public void setIdentifyFlag(String str) {
this.identifyFlag = str;
}

public void setMemberCommonFilter(MemberCommonInfoFilter memberCommonInfoFilter) {
this.memberCommonFilter = memberCommonInfoFilter;
}

public void setMemberNum(String str) {
this.memberNum = str;
}

public void setOnlineFlag(String str) {
this.onlineFlag = str;
}

public void setRealSpecialTitleFlag(String str) {
this.realSpecialTitleFlag = str;
}

public void setSourceType(int i2) {
this.sourceType = i2;
}

public void setStartUin(String str) {
this.startUin = str;
}

public void setUinList(ArrayList<Long> arrayList) {
this.uinList = arrayList;
}

public String toString() {
return "GroupMemberCommonReq{groupCode=" + this.groupCode + ",startUin=" + this.startUin + ",identifyFlag=" + this.identifyFlag + ",uinList=" + this.uinList + ",memberCommonFilter=" + this.memberCommonFilter + ",memberNum=" + this.memberNum + ",filterMethod=" + this.filterMethod + ",onlineFlag=" + this.onlineFlag + ",realSpecialTitleFlag=" + this.realSpecialTitleFlag + ",sourceType=" + this.sourceType + ",}";
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
package com.tencent.qqnt.kernel.nativeinterface;

import java.util.ArrayList;

public class GroupMemberExtListResult {
public long dataTime;
public long endUin;
public long groupCode;
public int levelNameSeq;
public int memberInfoSeq;
public int sysShowFlag;
public int timeToUpdate;
public int userShowFlag;
public int userShowFlagNew;
public ArrayList<MemberExtInfo> memberLevelInfo = new ArrayList<>();
public ArrayList<MemberLevelName> msgLevelName = new ArrayList<>();
public String strOwnerName = "";
public String strAdminName = "";
public ArrayList<MemberLevelName> msgLevelNameNew = new ArrayList<>();

public long getDataTime() {
return this.dataTime;
}

public long getEndUin() {
return this.endUin;
}

public long getGroupCode() {
return this.groupCode;
}

public int getLevelNameSeq() {
return this.levelNameSeq;
}

public int getMemberInfoSeq() {
return this.memberInfoSeq;
}

public ArrayList<MemberExtInfo> getMemberLevelInfo() {
return this.memberLevelInfo;
}

public ArrayList<MemberLevelName> getMsgLevelName() {
return this.msgLevelName;
}

public ArrayList<MemberLevelName> getMsgLevelNameNew() {
return this.msgLevelNameNew;
}

public String getStrAdminName() {
return this.strAdminName;
}

public String getStrOwnerName() {
return this.strOwnerName;
}

public int getSysShowFlag() {
return this.sysShowFlag;
}

public int getTimeToUpdate() {
return this.timeToUpdate;
}

public int getUserShowFlag() {
return this.userShowFlag;
}

public int getUserShowFlagNew() {
return this.userShowFlagNew;
}

public String toString() {
return "GroupMemberExtListResult{groupCode=" + this.groupCode + ",memberLevelInfo=" + this.memberLevelInfo + ",msgLevelName=" + this.msgLevelName + ",endUin=" + this.endUin + ",dataTime=" + this.dataTime + ",userShowFlag=" + this.userShowFlag + ",sysShowFlag=" + this.sysShowFlag + ",timeToUpdate=" + this.timeToUpdate + ",strOwnerName=" + this.strOwnerName + ",strAdminName=" + this.strAdminName + ",levelNameSeq=" + this.levelNameSeq + ",userShowFlagNew=" + this.userShowFlagNew + ",msgLevelNameNew=" + this.msgLevelNameNew + ",memberInfoSeq=" + this.memberInfoSeq + ",}";
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
package com.tencent.qqnt.kernel.nativeinterface;

import java.util.ArrayList;

public class GroupMemberExtReq {
public long groupCode;
public int sourceType;
public String beginUin = "";
public String dataTime = "";
public ArrayList<Long> uinList = new ArrayList<>();
public MemberExtInfoFilter memberExtFilter = new MemberExtInfoFilter();
public String seq = "";
public String uinNum = "";
public String groupType = "";
public String richCardNameVer = "";

public String getBeginUin() {
return this.beginUin;
}

public String getDataTime() {
return this.dataTime;
}

public long getGroupCode() {
return this.groupCode;
}

public String getGroupType() {
return this.groupType;
}

public MemberExtInfoFilter getMemberExtFilter() {
return this.memberExtFilter;
}

public String getRichCardNameVer() {
return this.richCardNameVer;
}

public String getSeq() {
return this.seq;
}

public int getSourceType() {
return this.sourceType;
}

public ArrayList<Long> getUinList() {
return this.uinList;
}

public String getUinNum() {
return this.uinNum;
}

public void setBeginUin(String str) {
this.beginUin = str;
}

public void setDataTime(String str) {
this.dataTime = str;
}

public void setGroupCode(long j2) {
this.groupCode = j2;
}

public void setGroupType(String str) {
this.groupType = str;
}

public void setMemberExtFilter(MemberExtInfoFilter memberExtInfoFilter) {
this.memberExtFilter = memberExtInfoFilter;
}

public void setRichCardNameVer(String str) {
this.richCardNameVer = str;
}

public void setSeq(String str) {
this.seq = str;
}

public void setSourceType(int i2) {
this.sourceType = i2;
}

public void setUinList(ArrayList<Long> arrayList) {
this.uinList = arrayList;
}

public void setUinNum(String str) {
this.uinNum = str;
}

public String toString() {
return "GroupMemberExtReq{groupCode=" + this.groupCode + ",beginUin=" + this.beginUin + ",dataTime=" + this.dataTime + ",uinList=" + this.uinList + ",memberExtFilter=" + this.memberExtFilter + ",seq=" + this.seq + ",uinNum=" + this.uinNum + ",groupType=" + this.groupType + ",richCardNameVer=" + this.richCardNameVer + ",sourceType=" + this.sourceType + ",}";
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
package com.tencent.qqnt.kernel.nativeinterface;

import java.util.ArrayList;
import java.util.HashMap;

public class GroupMemberListResult {
public boolean finish;
public boolean hasRobot;
public ArrayList<GroupMemberInfoListId> ids = new ArrayList<>();
public HashMap<String, MemberInfo> infos = new HashMap<>();

public boolean getFinish() {
return this.finish;
}

public boolean getHasRobot() {
return this.hasRobot;
}

public ArrayList<GroupMemberInfoListId> getIds() {
return this.ids;
}

public HashMap<String, MemberInfo> getInfos() {
return this.infos;
}

public String toString() {
return "GroupMemberListResult{ids=" + this.ids + ",infos=" + this.infos + ",finish=" + this.finish + ",hasRobot=" + this.hasRobot + ",}";
}

}
Loading

0 comments on commit 4016c05

Please sign in to comment.