org.jboss.test.web.interfaces
Interface StatelessSessionLocal

All Superinterfaces:
EJBLocalObject (src)

public interface StatelessSessionLocal
extends EJBLocalObject (src)

A trivial SessionBean local interface.


Method Summary
 void checkRunAs()
          A method deployed with method permissions such that only a run-as assignment will allow access.
 java.lang.String echo(java.lang.String arg)
          A method that returns its arg
 java.lang.String forward(java.lang.String echoArg)
          Forward a request to another StatelessSession's echo method
 void noop(ReferenceTest (src)  test, boolean optimized)
          A method that does nothing.
 void unchecked()
          A method deployed with no method permissions
 
Methods inherited from interface javax.ejb.EJBLocalObject (src)
getEJBLocalHome, getPrimaryKey, isIdentical, remove
 

Method Detail

echo

public java.lang.String echo(java.lang.String arg)
A method that returns its arg


noop

public void noop(ReferenceTest (src)  test,
                 boolean optimized)
A method that does nothing. It is used to test call optimization.


forward

public java.lang.String forward(java.lang.String echoArg)
Forward a request to another StatelessSession's echo method


unchecked

public void unchecked()
A method deployed with no method permissions


checkRunAs

public void checkRunAs()
A method deployed with method permissions such that only a run-as assignment will allow access.