Authz check(boolean result)

Issue: gh-5016
This commit is contained in:
Rob Winch 2018-02-12 14:45:02 -06:00
parent 1ad57adccc
commit ca5fb78ee1

View File

@ -25,6 +25,11 @@ import org.springframework.stereotype.Component;
*/ */
@Component @Component
public class Authz { public class Authz {
public boolean check(boolean result) {
return result;
}
public boolean check(long id) { public boolean check(long id) {
return id % 2 == 0; return id % 2 == 0;
} }