Package | Description |
---|---|
com.sun.enterprise.web | |
com.sun.enterprise.web.accesslog | |
com.sun.enterprise.web.pwc | |
com.sun.web.security.realmadapter | |
org.apache.catalina | |
org.apache.catalina.authenticator |
This package contains
Authenticator implementations for the
various supported authentication methods (BASIC, DIGEST, and FORM). |
org.apache.catalina.connector | |
org.apache.catalina.core | |
org.apache.catalina.loader | |
org.apache.catalina.logger | |
org.apache.catalina.realm |
This package contains
Realm implementations for the
various supported realm technologies for authenticating users and
identifying their associated roles. |
org.apache.catalina.session |
This package contains the standard
Manager and
Session implementations that represent the collection of
active sessions and the individual sessions themselves, respectively,
that are associated with a Context . |
org.apache.catalina.valves |
This package contains a variety of small Valve implementations that do
not warrant being packaged separately.
|
org.glassfish.web.ha.authenticator |
Modifier and Type | Class and Description |
---|---|
class |
AdHocWebModule |
class |
ContextFacade
Facade object which masks the internal
Context
object from the web application. |
class |
PEVirtualServer
Standard implementation of a virtual server (aka virtual host) in
the iPlanet Application Server.
|
class |
VirtualServer
Standard implementation of a virtual server (aka virtual host) in the Payara Server.
|
class |
WebModule
Class representing a web module for use by the Application Server.
|
Modifier and Type | Method and Description |
---|---|
Container |
VirtualServer.findChild(String contextRoot) |
Modifier and Type | Method and Description |
---|---|
void |
WebModule.setParent(Container container)
Sets the virtual server parent of this web module, and passes it on to
this web module's realm adapter..
|
Constructor and Description |
---|
WebPipeline(Container container)
creates an instance of WebPipeline
|
Constructor and Description |
---|
DefaultAccessLogFormatterImpl(String pattern,
Container container)
Constructor.
|
Modifier and Type | Class and Description |
---|---|
class |
PwcWebModule
Class representing a web module (servlet context).
|
Modifier and Type | Method and Description |
---|---|
Container |
AuthenticatorProxy.getContainer() |
Modifier and Type | Method and Description |
---|---|
void |
JaspicRealm.setVirtualServer(Container virtualServer) |
Modifier and Type | Interface and Description |
---|---|
interface |
Context
A Context is a Container that represents a servlet context, and
therefore an individual web application, in the Catalina servlet engine.
|
interface |
Engine
An Engine is a Container that represents the entire Catalina servlet
engine.
|
interface |
Host
A Host is a Container that represents a virtual host in the
Catalina servlet engine.
|
interface |
Wrapper
A Wrapper is a Container that represents an individual servlet
definition from the deployment descriptor of the web application.
|
Modifier and Type | Method and Description |
---|---|
Container |
Container.findChild(String name)
Return the child Container, associated with this Container, with
the specified name (if any); otherwise, return
null |
Container[] |
Container.findChildren()
Return the set of children Containers associated with this Container.
|
Container |
Manager.getContainer()
Return the Container with which this Manager is associated.
|
Container |
Contained.getContainer()
Return the
Container with which this instance is associated
(if any); otherwise return null . |
Container |
ContainerEvent.getContainer()
Return the Container on which this event occurred.
|
Container |
Connector.getContainer()
Return the Container used for processing requests received by this
Connector.
|
Container |
Realm.getContainer()
Return the Container with which this Realm has been associated.
|
Container |
Service.getContainer()
Return the
Container that handles requests for all
Connectors associated with this Service. |
Container |
Logger.getContainer()
Return the Container with which this Logger has been associated.
|
Container |
Loader.getContainer()
Return the Container with which this Loader has been associated.
|
Container |
Container.getParent()
Return the Container for which this Container is a child, if there is
one.
|
Modifier and Type | Method and Description |
---|---|
void |
Container.addChild(Container child)
Add a new child Container to those associated with this Container,
if supported.
|
void |
Container.removeChild(Container child)
Remove an existing child Container from association with this parent
Container.
|
void |
Manager.setContainer(Container container)
Set the Container with which this Manager is associated.
|
void |
Contained.setContainer(Container container)
Set the
Container with which this instance is associated. |
void |
Connector.setContainer(Container container)
Set the Container used for processing requests received by this
Connector.
|
void |
Realm.setContainer(Container container)
Set the Container with which this Realm has been associated.
|
void |
Service.setContainer(Container container)
Set the
Container that handles requests for all
Connectors associated with this Service. |
void |
Logger.setContainer(Container container)
Set the Container with which this Logger has been associated.
|
void |
Loader.setContainer(Container container)
Set the Container with which this Loader has been associated.
|
void |
Container.setParent(Container container)
Set the parent Container to which this Container is being added as a
child.
|
Constructor and Description |
---|
ContainerEvent(Container container,
String type,
Object data)
Construct a new ContainerEvent with the specified parameters.
|
Modifier and Type | Method and Description |
---|---|
Container |
AuthenticatorBase.getContainer()
Return the Container to which this Valve is attached.
|
Modifier and Type | Method and Description |
---|---|
void |
AuthenticatorBase.setContainer(Container container)
Set the Container to which this Valve is attached.
|
Modifier and Type | Field and Description |
---|---|
protected Container |
Connector.container
The Container used for processing requests received by this Connector.
|
Modifier and Type | Method and Description |
---|---|
Container |
Connector.getContainer()
Return the Container used for processing requests received by this
Connector.
|
Modifier and Type | Method and Description |
---|---|
void |
Connector.setContainer(Container container)
Set the Container used for processing requests received by this
Connector.
|
Modifier and Type | Class and Description |
---|---|
class |
ContainerBase
Abstract implementation of the Container interface, providing common
functionality required by nearly every implementation.
|
class |
StandardContext
Standard implementation of the Context interface.
|
class |
StandardEngine
Standard implementation of the Engine interface.
|
class |
StandardHost
Standard implementation of the Host interface.
|
class |
StandardWrapper
Standard implementation of the Wrapper interface that represents
an individual servlet definition.
|
Modifier and Type | Field and Description |
---|---|
protected Container |
StandardPipeline.container
The Container with which this Pipeline is associated.
|
protected Container |
StandardService.container
The Container associated with this Service.
|
protected Container |
ContainerBase.parent
The parent Container to which this Container is a child.
|
Modifier and Type | Field and Description |
---|---|
protected Map<String,Container> |
ContainerBase.children
The child Containers belonging to this Container, keyed by name.
|
Modifier and Type | Method and Description |
---|---|
Container |
ContainerBase.findChild(String name)
Return the child Container, associated with this Container, with
the specified name (if any); otherwise, return
null |
Container |
StandardHost.findChild(String contextRoot)
Returns the context deployed at the given context root.
|
Container[] |
ContainerBase.findChildren()
Return the set of children Containers associated with this Container.
|
Container |
StandardPipeline.getContainer()
Return the Container with which this Pipeline is associated.
|
Container |
StandardService.getContainer()
Return the
Container that handles requests for all
Connectors associated with this Service. |
Container |
ContainerBase.getParent()
Return the Container for which this Container is a child, if there is
one.
|
Modifier and Type | Method and Description |
---|---|
void |
StandardEngine.addChild(Container child)
Add a child Container, only if the proposed child is an implementation
of Host.
|
void |
StandardContext.addChild(Container child)
Adds the given child Container to this context.
|
void |
ContainerBase.addChild(Container child)
Add a new child Container to those associated with this Container,
if supported.
|
void |
StandardHost.addChild(Container child)
Add a child Container, only if the proposed child is an implementation
of Context.
|
void |
StandardHostDeployer.addChild(Container child)
Delegate a request to add a child Context to our associated Host.
|
void |
StandardWrapper.addChild(Container child)
Refuse to add a child Container, because Wrappers are the lowest level
of the Container hierarchy.
|
protected void |
StandardContext.addChild(Container child,
boolean isProgrammatic,
boolean createRegistration)
Adds the given child (Servlet) to this context.
|
void |
StandardContext.loadOnStartup(Container[] children)
Load and initialize all servlets marked "load on startup" in the
web application deployment descriptor.
|
protected void |
ContainerBase.ContainerBackgroundProcessor.processChildren(Container container,
ClassLoader cl) |
void |
StandardContext.removeChild(Container child)
Removes the given child container.
|
void |
ContainerBase.removeChild(Container child)
Remove an existing child Container from association with this parent
Container.
|
void |
StandardPipeline.setContainer(Container container)
Set the Container with which this Pipeline is associated.
|
void |
StandardService.setContainer(Container container)
Set the
Container that handles requests for all
Connectors associated with this Service. |
void |
StandardEngine.setParent(Container container)
Disallow any attempt to set a parent for this Container, since an
Engine is supposed to be at the top of the Container hierarchy.
|
void |
ContainerBase.setParent(Container container)
Set the parent Container to which this Container is being added as a
child.
|
void |
StandardWrapper.setParent(Container container)
Set the parent Container of this Wrapper, but only if it is a Context.
|
Constructor and Description |
---|
StandardPipeline(Container container)
Construct a new StandardPipeline instance that is associated with the specified Container.
|
Modifier and Type | Method and Description |
---|---|
Container |
WebappLoader.getContainer()
Return the Container with which this Logger has been associated.
|
Modifier and Type | Method and Description |
---|---|
void |
WebappLoader.setContainer(Container container)
Set the Container with which this Logger has been associated.
|
Modifier and Type | Field and Description |
---|---|
protected Container |
LoggerBase.container
The Container with which this Logger has been associated.
|
Modifier and Type | Method and Description |
---|---|
Container |
LoggerBase.getContainer()
Return the Container with which this Logger has been associated.
|
Modifier and Type | Method and Description |
---|---|
void |
LoggerBase.setContainer(Container container)
Set the Container with which this Logger has been associated.
|
Modifier and Type | Field and Description |
---|---|
protected Container |
RealmBase.container
The Container with which this Realm is associated.
|
Modifier and Type | Method and Description |
---|---|
Container |
RealmBase.getContainer()
Return the Container with which this Realm has been associated.
|
Modifier and Type | Method and Description |
---|---|
void |
JAASRealm.setContainer(Container container) |
void |
RealmBase.setContainer(Container container)
Set the Container with which this Realm has been associated.
|
Modifier and Type | Field and Description |
---|---|
protected Container |
ManagerBase.container
The Container with which this Manager is associated.
|
Modifier and Type | Method and Description |
---|---|
Container |
ManagerBase.getContainer()
Return the Container with which this Manager is associated.
|
Modifier and Type | Method and Description |
---|---|
void |
StandardManager.setContainer(Container container)
Set the Container with which this Manager has been associated.
|
void |
PersistentManagerBase.setContainer(Container container)
Set the Container with which this Manager has been associated.
|
void |
ManagerBase.setContainer(Container container)
Set the Container with which this Manager is associated.
|
Modifier and Type | Field and Description |
---|---|
protected Container |
ValveBase.container
The Container whose pipeline this Valve is a component of.
|
Modifier and Type | Method and Description |
---|---|
Container |
ValveBase.getContainer()
Return the Container with which this Valve is associated, if any.
|
Modifier and Type | Method and Description |
---|---|
void |
ValveBase.setContainer(Container container)
Set the Container with which this Valve is associated, if any.
|
Constructor and Description |
---|
HASingleSignOnEntry(Container container,
HASingleSignOnEntryMetadata m,
JavaEEIOUtils ioUtils) |
Copyright © 2020. All rights reserved.