| |
|
| org.jboss.test.security.interfaces.StatelessSession
StatelessSession | public interface StatelessSession extends EJBObject(Code) | | |
Method Summary | |
public String | echo(String arg) | public void | excluded() A method that is assigned to the exclude-list tag
to indicate that no users should be allowed to call it. | public String | forward(String echoArg) A method that looks up the StatelessSession bean located at
java:comp/env/ejb/Session and invokes echo(echoArg) on the
bean and returns the result. | public void | noop() | public void | npeError() | public void | unchecked() A method that is assigned the method-permission/unchecked tag
to allow any authenticated user call the method. |
excluded | public void excluded() throws RemoteException(Code) | | A method that is assigned to the exclude-list tag
to indicate that no users should be allowed to call it.
|
forward | public String forward(String echoArg) throws RemoteException(Code) | | A method that looks up the StatelessSession bean located at
java:comp/env/ejb/Session and invokes echo(echoArg) on the
bean and returns the result.
|
noop | public void noop() throws RemoteException(Code) | | A method that does nothing but is not assiged a
method-permission in the ejb-jar.xml descriptor
|
unchecked | public void unchecked() throws RemoteException(Code) | | A method that is assigned the method-permission/unchecked tag
to allow any authenticated user call the method.
|
|
|
|