use of com.github.df.restypass.filter.TrafficLimitFilter in project RestyPass by darren-fu.
the class DefaultRestyPassFactory method getCommandFilter.
@Override
public List<CommandFilter> getCommandFilter() {
List<CommandFilter> commandFilterList = new ArrayList<>();
commandFilterList.add(new TrafficLimitFilter());
return commandFilterList;
}
Aggregations