1 22 23 package org.jboss.test.security.interfaces; 24 25 import javax.ejb.*; 26 import java.rmi.*; 27 28 public interface RunAsServiceRemote extends EJBObject 29 { 30 public void unprotectedEjbMethod(CallerInfo info) 31 throws RemoteException; 32 public void runAsMethod(CallerInfo info) 33 throws RemoteException; 34 public void groupMemberMethod(CallerInfo info) 35 throws RemoteException; 36 public void userMethod(CallerInfo info) 37 throws RemoteException; 38 public void allAuthMethod(CallerInfo info) 39 throws RemoteException; 40 public void publicMethod(CallerInfo info) 41 throws RemoteException; 42 } 43 | Popular Tags |