org.jboss.ejb3.test.dd.web.servlets |
|
Java Source File Name | Type | Comment |
APIServlet.java | Class | A servlet that tests use of various servlet API calls that can be affected
by the web container integration layer. |
ClasspathServlet.java | Class | A servlet that accesses classes in WEB-INF/classes using Class.forName
during its initialization. |
ClientLoginServlet.java | Class | A servlet that performs a JAAS login to access a secure EJB. |
DebugServlet.java | Class | A servlet that dumps out debugging information about its environment. |
EJBOnStartupServlet.java | Class | A servlet that accesses an EJB inside its init and destroy methods
to test web component startup ordering with respect to ebj components. |
EJBServlet.java | Class | tests injection annotations of @EJB, @PersistenceContext, @PersistenceUnit, etc... |
IncludeServlet.java | Class | |
LogoutServlet.java | Class | A servlet that logs out a user by invalidating any current session and then
redirects the user to the welcome page. |
SecuredPostServlet.java | Class | A secured servlet which is the target of a post from an unsecured servlet. |
SecureEJBServlet.java | Class | |
SecureEJBServletMT.java | Class | A servlet that spawns a thread to perform a long running task that
interacts with a secure EJB. |
SecureServlet.java | Class | A servlet that is secured by the web.xml descriptor. |
SpeedServlet.java | Class | A servlet that accesses an EJB and tests the speed of optimized versus
non-optimized invocations. |
StatefulSessionServlet.java | Class | A servlet that accesses a stateful session EJB and stores a handle in the session context
to test retrieval of the session from the handle. |
SubjectFilter.java | Class | |
SubjectServlet.java | Class | |
TestSessionListener.java | Class | A test HttpSessionListener that tracks which sessions have seen
create/destory events. |
UnsecureEJBServlet.java | Class | A servlet deployed under an unrestricted path that invokes the method
specified as a parameter on a secured EJB. |
UnsecureRunAsServlet.java | Class | A servlet deployed under an unrestricted path that invokes the checkRunAs
method on a secured RunAsTargetLocal EJB. |
UserInRoleServlet.java | Class | A servlet that calls isUserInRole for every role name defined in the
expectedUserRoles init parameter and validates that each role is assigned
to the user. |