1 22 package org.jboss.test.security.interfaces; 23 24 import java.util.Set ; 25 import java.rmi.RemoteException ; 26 import javax.ejb.EJBObject ; 27 28 32 public interface SecurityContext extends EJBObject  33 { 34 38 public void testDomainInteraction(Set expectedRoles) throws RemoteException ; 39 40 public void nestedInteraction(SecurityContext caller, Set expectedRoles) 41 throws RemoteException ; 42 } 43 | Popular Tags |