Added missing test class.
This commit is contained in:
parent
a7d046357b
commit
3521af4cae
|
@ -0,0 +1,16 @@
|
|||
package org.springframework.security.expression.support;
|
||||
|
||||
public class SecurityRules {
|
||||
public static boolean disallow() {
|
||||
return false;
|
||||
}
|
||||
|
||||
public static boolean allow() {
|
||||
return false;
|
||||
}
|
||||
|
||||
public static boolean isJoe(String s) {
|
||||
return "joe".equals(s);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue