1 25 26 package org.objectweb.easybeans.tests.common.ejbs.stateful.containermanaged.security; 27 28 34 public interface ItfSecurityRolesTester { 35 36 39 void testGetCallerPrincipalSameCaller(); 40 41 45 void testGetCallerPrincipalDifferentCaller(); 46 47 51 void testIsCallerInRoleIncorrect(); 52 53 57 void testIsCallerInRoleCorrect(); 58 59 63 @SuppressWarnings ("deprecation") 64 void testGetCallerIdentity(); 65 66 70 @SuppressWarnings ("deprecation") 71 void testIsCallerInRoleDeprecated(); 72 73 76 void testPermitAll(); 77 78 81 void testDenyAll(); 82 83 87 void testAllowedRolesWithTwoRoles(); 88 89 93 void testAllowedRolesWithOneRole(); 94 95 } 96 | Popular Tags |