Skip to content

Commit

Permalink
Add way to get all Handlers from ProtectionAll
Browse files Browse the repository at this point in the history
  • Loading branch information
EverNife committed Mar 22, 2023
1 parent 6cd28ee commit a17c59d
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ public ProtectionAll(List<ProtectionHandler> protectionHandlers) {
this.PROTECTION_HANDLERS.addAll(protectionHandlers);
}

public List<ProtectionHandler> getProtectionHandlers() {
return PROTECTION_HANDLERS;
}

@Override
public String getName() {
return "ProtectionAll";
Expand Down

0 comments on commit a17c59d

Please sign in to comment.