Added missing test class.

This commit is contained in:
Luke Taylor 2008-10-30 04:32:22 +00:00
parent a7d046357b
commit 3521af4cae
1 changed files with 16 additions and 0 deletions

View File

@ -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);
}
}