| RunAsTargetLocal.java |
/*
* JBoss, the OpenSource WebOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.test.web.interfaces;
import javax.ejb.EJBLocalObject;
import java.rmi.RemoteException;
/** A session bean local interface used to test run-as behavior from
a servlet
@author Scott.Stark@jboss.org
@version $Revision: 1.1 $
*/
public interface RunAsTargetLocal extends EJBLocalObject
{
/** A method deployed with method permissions such that only a run-as
* assignment will allow access.
*/
public void checkRunAs();
}
| RunAsTargetLocal.java |