Skip to content

Commit

Permalink
implement getAdditionalFilter method
Browse files Browse the repository at this point in the history
  • Loading branch information
floriangantner committed Oct 13, 2023
1 parent 1d26095 commit 9db147d
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import java.util.List;

import org.dspace.content.logic.DefaultFilter;
import org.dspace.content.logic.Filter;
import org.dspace.content.security.AccessItemMode;
import org.dspace.content.security.CrisSecurity;

Expand Down Expand Up @@ -137,6 +138,11 @@ public List<String> getGroups() {
return groups;
}

@Override
public Filter getAdditionalFilter() {
return null;
}

@Override
public String toString() {
return "AssociateItemMode [name=" + name + ", label=" + label + ", security=" + securities + ", discovery="
Expand Down

0 comments on commit 9db147d

Please sign in to comment.