Skip to content

Commit

Permalink
Add set method for config black list.
Browse files Browse the repository at this point in the history
  • Loading branch information
ShannonDing committed Nov 28, 2023
1 parent 9cfe724 commit 9ba633f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,10 @@ public String getConfigBlackList() {
return configBlackList;
}

public void setConfigBlackList(String configBlackList) {
this.configBlackList = configBlackList;
}

public long getMaxPopPollingSize() {
return maxPopPollingSize;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,10 @@ public String getConfigBlackList() {
return configBlackList;
}

public void setConfigBlackList(String configBlackList) {
this.configBlackList = configBlackList;
}

public String getRocketmqHome() {
return rocketmqHome;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,10 @@ public String getConfigBlackList() {
return configBlackList;
}

public void setConfigBlackList(String configBlackList) {
this.configBlackList = configBlackList;
}

public boolean isOrderMessageEnable() {
return orderMessageEnable;
}
Expand Down

0 comments on commit 9ba633f

Please sign in to comment.