Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.jboss.web.catalina.* (23)org.jboss.web.loadbalancer.* (9)org.jboss.web.tomcat.* (47)

org.jboss.web: Javadoc index of package org.jboss.web.


Package Samples:

org.jboss.web.catalina
org.jboss.web.catalina.security
org.jboss.web.catalina.session
org.jboss.web.loadbalancer.scheduler
org.jboss.web.loadbalancer.util
org.jboss.web.loadbalancer
org.jboss.web.tomcat.mbean
org.jboss.web.tomcat.security
org.jboss.web.tomcat.session
org.jboss.web.tomcat.statistics
org.jboss.web.tomcat.tc4.authenticator
org.jboss.web.tomcat.tc4.statistics
org.jboss.web.tomcat.tc4
org.jboss.web.tomcat.tc5.session
org.jboss.web.tomcat.tc5
org.jboss.web.tomcat

Classes:

AbstractWebContainer: A template pattern class for web container integration into JBoss. This class should be subclasses by web container providers wishing to integrate their container into a JBoss server. It provides support for mapping the following web-app.xml/jboss-web.xml elements into the JBoss server JNDI namespace: - env-entry - resource-ref - resource-env-ref - ejb-ref - ejb-local-ref - security-domain Subclasses need to implement the performDeploy() and performUndeploy() 55 methods to perform the container specific steps and return the web application info required by the AbstractWebContainer class. Integration ...
AuthenticatorBase: Overrides the superclass version by using class org.jboss.web.tomcat.tc4.authenticator.SingleSignOn instead of org.apache.catalina.authenticator.SingleSignOn as its method expected single sign-on valve. This class also differs from the standard Tomcat version in its implementation of method reqister 55 . Basic implementation of the Valve interface that enforces the <security-constraint> elements in the web application deployment descriptor. This functionality is implemented as a Valve so that it can be ommitted in environments that do not require these features. Individual implementations ...
SingleSignOn: A Valve that supports a "single sign on" user experience, where the security identity of a user who successfully authenticates to one web application is propogated to other web applications in the same security domain. USAGE: For successful use, the following requirements must be met: be met: This Valve must be configured on the Container that represents a virtual host (typically an implementation of Host ). The Realm that contains the shared user and role information must be configured on the same Container (or a higher one), and not overridden at the web application level. The web applications ...
WebClassLoader: A simple subclass of URLClassLoader that is used in conjunction with the the WebService mbean to allow dynamic loading of resources and classes from deployed ears, ejb jars and wars. A WebClassLoader is associated with a Container and must have an UnifiedClassLoader as its parent. It overrides the getURLs() method to return a different set of URLs for remote loading than what is used for local loading. WebClassLoader has two methods meant to be overriden by subclasses: getKey() and getBytes(). The latter is a no-op in this implementation and should be overriden by subclasses with bytecode generation ...
JBossSecurityMgrRealm: An implementation of the catelinz Realm and Valve interfaces. The Realm implementation handles authentication and authorization using the JBossSX security framework. It relieas on the JNDI ENC namespace setup by the AbstractWebContainer. In particular, it uses the java:comp/env/security subcontext to access the security manager interfaces for authorization and authenticaton. The Valve interface is used to associated the authenticated user with the SecurityAssociation class when a request begins so that web components may call EJBs and have the principal propagated. The security association is removed ...
JBossSecurityMgrRealm: An implementation of the catelinz Realm and Valve interfaces. The Realm implementation handles authentication and authorization using the JBossSX security framework. It relieas on the JNDI ENC namespace setup by the AbstractWebContainer. In particular, it uses the java:comp/env/security subcontext to access the security manager interfaces for authorization and authenticaton. The Valve interface is used to associated the authenticated user with the SecurityAssociation class when a request begins so that web components may call EJBs and have the principal propagated. The security association is removed ...
SingleSignOnContextConfig: Startup event listener for a Context that configures the properties of that Context, and the associated defined servlets, using by default the authenticator classes found in package org.jboss.web.tomcat.tc4.authenticator . Differs from the standard Tomcat ContextConfig class solely in that it determines any authenticator valve to load by referring to property file org.jboss.web.tomcat.tc4.Authenticators instead of org.apache.catalina.startup.Authenticators . This difference is implemented in private method authenticatorConfig .
WebServer: A mini webserver that should be embedded in another application. It can server any file that is available from classloaders that are registered with it, including class-files. Its primary purpose is to simplify dynamic class-loading in RMI. Create an instance of it, register a classloader with your classes, start it, and you'll be able to let RMI-clients dynamically download classes from it. It is configured by calling any methods programmatically prior to startup.
SSLAuthenticator: An Authenticator and Valve implementation of authentication that utilizes SSL certificates to identify client users. Differs from the standard Tomcat version in that it 1) associates the session of any request with any single sign-on session that may exist and 2) only ignores its own authentication process if a given request already has a Principal bound to it AND this object's cache property is set to true .
FormAuthenticator: An Authenticator and Valve implementation of FORM BASED Authentication, as described in the Servlet API Specification, Version 2.2. Differs slightly from the standard Tomcat version in its implementation of the authenticate 55 method.
EmbeddedCatalinaServiceSX: An implementation of the AbstractWebContainer for the Jakarta Tomcat 4.0 servlet container. This uses the org.apache.catalina.startup.Embedded as the integration class. It does not parse the catalina server.xml in the catalina distribution. Rather, it parses a subset of the server.xml syntax and obtains this configuration information from the Config attribute.
EmbeddedTomcatService: An implementation of the AbstractWebContainer for the Jakarta Tomcat 4.1 servlet container. This uses the org.apache.catalina.startup.Embedded as the integration class. It does not parse the catalina server.xml in the catalina distribution. Rather, it parses a subset of the server.xml syntax and obtains this configuration information from the Config attribute.
BasicAuthenticator: An Authenticator and Valve implementation of HTTP BASIC Authentication, as outlined in RFC 2617: "HTTP Authentication: Basic and Digest Access Authentication." Differs from the standard Tomcat version in that it associates the session of any request with any single sign-on session that may exist.
LoggedXmlMapper: LoggedXmlMapper : a catalina XmlMapper that log onto a jboss Logger. This actually helps very little since the XmlMapper uses System.out.println directly in numerous places. TOMCAT 4.1.12 UPDATE: Extends org.apache.jakarta.commons.Digester instead of XmlMapper. Sundry related changes for setting up Rules, etc.
LoggedXmlMapper: LoggedXmlMapper : a catalina XmlMapper that log onto a jboss Logger. This actually helps very little since the XmlMapper uses System.out.println directly in numerous places. TOMCAT 4.1.12 UPDATE: Extends org.apache.jakarta.commons.Digester instead of XmlMapper. Sundry related changes for setting up Rules, etc.
SingleSignOnEntry: Extraction of the private inner class org.apache.catalina.authenticator.SingleSignOn.SingleSignOnEntry into a package protected class. This is necessary to make it available to AuthenticatorBase subclasses that need it in order to perform reauthentications when SingleSignOn is in use.
EmbeddedService: A Service implementation that delegates its TOMCAT 4.1.12 UPDATE: Added getServer() and setServer(Server server) methods to comply with new Service interface, and renamed setServer(EmbeddedCatalina catalina) to setEmbeddedServer(EmbeddedCatalina catalina) to avoid confusion
EmbeddedService: A Service implementation that delegates its TOMCAT 4.1.12 UPDATE: Added getServer() and setServer(Server server) methods to comply with new Service interface, and renamed setServer(EmbeddedCatalina catalina) to setEmbeddedServer(EmbeddedCatalina catalina) to avoid confusion
NonLoginAuthenticator: An Authenticator and Valve implementation that checks only security constraints not involving user authentication. Differs from the standard Tomcat version in that it associates the session of any request with any single sign-on session that may exist.
ClusteredSessionValve: This Valve detects all sessions that were used in a request. All sessions are given to a snapshot manager that handles the distribution of modified sessions. TOMCAT 4.1.12 UPDATE: Added findLifecycleListeners() to comply with the latest Lifecycle interface.
ClusteredSessionValve: This Valve detects all sessions that were used in a request. All sessions are given to a snapshot manager that handles the distribution of modified sessions. TOMCAT 4.1.12 UPDATE: Added findLifecycleListeners() to comply with the latest Lifecycle interface.
ClusteredSessionValve: This Valve detects all sessions that were used in a request. All sessions are given to a snapshot manager that handles the distribution of modified sessions. TOMCAT 4.1.12 UPDATE: Added findLifecycleListeners() to comply with the latest Lifecycle interface.
SetParentClassLoaderRule: This action sets the Context parent class loader to the loader passed into the ctor and adds the urls for the jars that contain the javax.servlet.Servlet class, the org/apache/jasper/JspC.class, and the org/apache/jasper/runtime/HttpJspBase.class.
DigestAuthenticator: An Authenticator and Valve implementation of HTTP DIGEST Authentication (see RFC 2069). Differs from the standard Tomcat version in that it associates the session of any request with any single sign-on session that may exist.
ConfigHandler: This is a step toward supporting elements of the catalina server.xml config as child elements of the jboss.jcml mbean/config extended configuration element. TOMCAT 4.1.12: To use the Digester package bundled with Tomcat 4.1.12 instead.

Home | Contact Us | Privacy Policy | Terms of Service