p2p配置部分提交.

This commit is contained in:
zhangwenqing
2018-08-17 19:31:48 +08:00
parent a7d2b937a5
commit ea99d23eec
3 changed files with 40 additions and 0 deletions

View File

@@ -57,6 +57,10 @@ public class CfgIndexInfo extends BaseCfg<CfgIndexInfo> {
private Long dnsStrategyId;
private String dnsStrategyName;
private P2pHashCfg p2pHash;
private P2pKeywordCfg p2pKeyword;
private List<P2pHashCfg> p2pHashList;
private List<P2pKeywordCfg> p2pKeywordList;
public NtcSubscribeIdCfg getNtcSubscribeIdCfg() {
return ntcSubscribeIdCfg;
@@ -209,6 +213,30 @@ public class CfgIndexInfo extends BaseCfg<CfgIndexInfo> {
public void setDigestList(List<FileDigestCfg> digestList) {
this.digestList = digestList;
}
public P2pHashCfg getP2pHash() {
return p2pHash;
}
public void setP2pHash(P2pHashCfg p2pHash) {
this.p2pHash = p2pHash;
}
public P2pKeywordCfg getP2pKeyword() {
return p2pKeyword;
}
public void setP2pKeyword(P2pKeywordCfg p2pKeyword) {
this.p2pKeyword = p2pKeyword;
}
public List<P2pHashCfg> getP2pHashList() {
return p2pHashList;
}
public void setP2pHashList(List<P2pHashCfg> p2pHashList) {
this.p2pHashList = p2pHashList;
}
public List<P2pKeywordCfg> getP2pKeywordList() {
return p2pKeywordList;
}
public void setP2pKeywordList(List<P2pKeywordCfg> p2pKeywordList) {
this.p2pKeywordList = p2pKeywordList;
}
public static String getTablename() {
return tableName;
}