1
0
mirror of synced 2026-07-31 15:27:03 +00:00

Added missing test class.

This commit is contained in:
Luke Taylor
2008-10-30 04:32:22 +00:00
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);
}
}