Uses of Interface
org.apache.catalina.Container
-
Packages that use Container Package Description com.sun.enterprise.web com.sun.enterprise.web.accesslog com.sun.enterprise.web.logger com.sun.enterprise.web.pwc com.sun.web.security.realmadapter org.apache.catalina org.apache.catalina.authenticator This package containsAuthenticatorimplementations 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 containsRealmimplementations for the various supported realm technologies for authenticating users and identifying their associated roles.org.apache.catalina.session This package contains the standardManagerandSessionimplementations that represent the collection of active sessions and the individual sessions themselves, respectively, that are associated with aContext.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 -
-
Uses of Container in com.sun.enterprise.web
Classes in com.sun.enterprise.web that implement Container Modifier and Type Class Description classAdHocWebModuleclassContextFacadeFacade object which masks the internalContextobject from the web application.classPEVirtualServerStandard implementation of a virtual server (aka virtual host) in the iPlanet Application Server.classVirtualServerStandard implementation of a virtual server (aka virtual host) in the Payara Server.classWebModuleClass representing a web module for use by the Application Server.Methods in com.sun.enterprise.web that return Container Modifier and Type Method Description ContainerVirtualServer. findChild(String contextRoot)Methods in com.sun.enterprise.web with parameters of type Container Modifier and Type Method Description voidWebModule. setParent(Container container)Sets the virtual server parent of this web module, and passes it on to this web module's realm adapter..Constructors in com.sun.enterprise.web with parameters of type Container Constructor Description WebPipeline(Container container)creates an instance of WebPipeline -
Uses of Container in com.sun.enterprise.web.accesslog
Constructors in com.sun.enterprise.web.accesslog with parameters of type Container Constructor Description DefaultAccessLogFormatterImpl(String pattern, Container container)Constructor. -
Uses of Container in com.sun.enterprise.web.logger
Fields in com.sun.enterprise.web.logger declared as Container Modifier and Type Field Description protected ContainerLoggerBase. containerThe Container with which this Logger has been associated.protected ContainerLoggerBase. containerThe Container with which this Logger has been associated. -
Uses of Container in com.sun.enterprise.web.pwc
Classes in com.sun.enterprise.web.pwc that implement Container Modifier and Type Class Description classPwcWebModuleClass representing a web module (servlet context). -
Uses of Container in com.sun.web.security.realmadapter
Methods in com.sun.web.security.realmadapter that return Container Modifier and Type Method Description ContainerAuthenticatorProxy. getContainer()Methods in com.sun.web.security.realmadapter with parameters of type Container Modifier and Type Method Description voidJaspicRealm. setVirtualServer(Container virtualServer) -
Uses of Container in org.apache.catalina
Subinterfaces of Container in org.apache.catalina Modifier and Type Interface Description interfaceContextA Context is a Container that represents a servlet context, and therefore an individual web application, in the Catalina servlet engine.interfaceEngineAn Engine is a Container that represents the entire Catalina servlet engine.interfaceHostA Host is a Container that represents a virtual host in the Catalina servlet engine.interfaceWrapperA Wrapper is a Container that represents an individual servlet definition from the deployment descriptor of the web application.Methods in org.apache.catalina that return Container Modifier and Type Method Description ContainerContainer. findChild(String name)Return the child Container, associated with this Container, with the specified name (if any); otherwise, returnnullContainer[]Container. findChildren()Return the set of children Containers associated with this Container.ContainerConnector. getContainer()Return the Container used for processing requests received by this Connector.ContainerContained. getContainer()Return theContainerwith which this instance is associated (if any); otherwise returnnull.ContainerContainerEvent. getContainer()Return the Container on which this event occurred.ContainerLoader. getContainer()Return the Container with which this Loader has been associated.ContainerLogger. getContainer()Return the Container with which this Logger has been associated.ContainerManager. getContainer()Return the Container with which this Manager is associated.ContainerRealm. getContainer()Return the Container with which this Realm has been associated.ContainerService. getContainer()Return theContainerthat handles requests for allConnectorsassociated with this Service.ContainerContainer. getParent()Return the Container for which this Container is a child, if there is one.Methods in org.apache.catalina with parameters of type Container Modifier and Type Method Description voidContainer. addChild(Container child)Add a new child Container to those associated with this Container, if supported.voidContainer. removeChild(Container child)Remove an existing child Container from association with this parent Container.voidConnector. setContainer(Container container)Set the Container used for processing requests received by this Connector.voidContained. setContainer(Container container)Set theContainerwith which this instance is associated.voidLoader. setContainer(Container container)Set the Container with which this Loader has been associated.voidLogger. setContainer(Container container)Set the Container with which this Logger has been associated.voidManager. setContainer(Container container)Set the Container with which this Manager is associated.voidRealm. setContainer(Container container)Set the Container with which this Realm has been associated.voidService. setContainer(Container container)Set theContainerthat handles requests for allConnectorsassociated with this Service.voidContainer. setParent(Container container)Set the parent Container to which this Container is being added as a child.Constructors in org.apache.catalina with parameters of type Container Constructor Description ContainerEvent(Container container, String type, Object data)Construct a new ContainerEvent with the specified parameters. -
Uses of Container in org.apache.catalina.authenticator
Methods in org.apache.catalina.authenticator that return Container Modifier and Type Method Description ContainerAuthenticatorBase. getContainer()Return the Container to which this Valve is attached.Methods in org.apache.catalina.authenticator with parameters of type Container Modifier and Type Method Description voidAuthenticatorBase. setContainer(Container container)Set the Container to which this Valve is attached. -
Uses of Container in org.apache.catalina.connector
Fields in org.apache.catalina.connector declared as Container Modifier and Type Field Description protected ContainerConnector. containerThe Container used for processing requests received by this Connector.Methods in org.apache.catalina.connector that return Container Modifier and Type Method Description ContainerConnector. getContainer()Return the Container used for processing requests received by this Connector.Methods in org.apache.catalina.connector with parameters of type Container Modifier and Type Method Description voidConnector. setContainer(Container container)Set the Container used for processing requests received by this Connector. -
Uses of Container in org.apache.catalina.core
Classes in org.apache.catalina.core that implement Container Modifier and Type Class Description classContainerBaseAbstract implementation of the Container interface, providing common functionality required by nearly every implementation.classStandardContextStandard implementation of the Context interface.classStandardEngineStandard implementation of the Engine interface.classStandardHostStandard implementation of the Host interface.classStandardWrapperStandard implementation of the Wrapper interface that represents an individual servlet definition.Fields in org.apache.catalina.core declared as Container Modifier and Type Field Description protected ContainerStandardPipeline. containerThe Container with which this Pipeline is associated.protected ContainerStandardService. containerThe Container associated with this Service.protected ContainerContainerBase. parentThe parent Container to which this Container is a child.Fields in org.apache.catalina.core with type parameters of type Container Modifier and Type Field Description protected Map<String,Container>ContainerBase. childrenThe child Containers belonging to this Container, keyed by name.Methods in org.apache.catalina.core that return Container Modifier and Type Method Description ContainerContainerBase. findChild(String name)Return the child Container, associated with this Container, with the specified name (if any); otherwise, returnnullContainerStandardHost. 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.ContainerStandardPipeline. getContainer()Return the Container with which this Pipeline is associated.ContainerStandardService. getContainer()Return theContainerthat handles requests for allConnectorsassociated with this Service.ContainerContainerBase. getParent()Return the Container for which this Container is a child, if there is one.Methods in org.apache.catalina.core with parameters of type Container Modifier and Type Method Description voidContainerBase. addChild(Container child)Add a new child Container to those associated with this Container, if supported.voidStandardContext. addChild(Container child)Adds the given child Container to this context.protected voidStandardContext. addChild(Container child, boolean isProgrammatic, boolean createRegistration)Adds the given child (Servlet) to this context.voidStandardEngine. addChild(Container child)Add a child Container, only if the proposed child is an implementation of Host.voidStandardHost. addChild(Container child)Add a child Container, only if the proposed child is an implementation of Context.voidStandardHostDeployer. addChild(Container child)Delegate a request to add a child Context to our associated Host.voidStandardWrapper. addChild(Container child)Refuse to add a child Container, because Wrappers are the lowest level of the Container hierarchy.voidStandardContext. loadOnStartup(Container[] children)Load and initialize all servlets marked "load on startup" in the web application deployment descriptor.protected voidContainerBase.ContainerBackgroundProcessor. processChildren(Container container, ClassLoader cl)voidContainerBase. removeChild(Container child)Remove an existing child Container from association with this parent Container.voidStandardContext. removeChild(Container child)Removes the given child container.voidStandardPipeline. setContainer(Container container)Set the Container with which this Pipeline is associated.voidStandardService. setContainer(Container container)Set theContainerthat handles requests for allConnectorsassociated with this Service.voidContainerBase. setParent(Container container)Set the parent Container to which this Container is being added as a child.voidStandardEngine. 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.voidStandardWrapper. setParent(Container container)Set the parent Container of this Wrapper, but only if it is a Context.Constructors in org.apache.catalina.core with parameters of type Container Constructor Description StandardPipeline(Container container)Construct a new StandardPipeline instance that is associated with the specified Container. -
Uses of Container in org.apache.catalina.loader
Methods in org.apache.catalina.loader that return Container Modifier and Type Method Description ContainerWebappLoader. getContainer()Return the Container with which this Logger has been associated.Methods in org.apache.catalina.loader with parameters of type Container Modifier and Type Method Description voidWebappLoader. setContainer(Container container)Set the Container with which this Logger has been associated. -
Uses of Container in org.apache.catalina.logger
Fields in org.apache.catalina.logger declared as Container Modifier and Type Field Description protected ContainerLoggerBase. containerThe Container with which this Logger has been associated.Methods in org.apache.catalina.logger that return Container Modifier and Type Method Description ContainerLoggerBase. getContainer()Return the Container with which this Logger has been associated.Methods in org.apache.catalina.logger with parameters of type Container Modifier and Type Method Description voidLoggerBase. setContainer(Container container)Set the Container with which this Logger has been associated. -
Uses of Container in org.apache.catalina.realm
Fields in org.apache.catalina.realm declared as Container Modifier and Type Field Description protected ContainerRealmBase. containerThe Container with which this Realm is associated.Methods in org.apache.catalina.realm that return Container Modifier and Type Method Description ContainerRealmBase. getContainer()Return the Container with which this Realm has been associated.Methods in org.apache.catalina.realm with parameters of type Container Modifier and Type Method Description voidJAASRealm. setContainer(Container container)voidRealmBase. setContainer(Container container)Set the Container with which this Realm has been associated. -
Uses of Container in org.apache.catalina.session
Fields in org.apache.catalina.session declared as Container Modifier and Type Field Description protected ContainerManagerBase. containerThe Container with which this Manager is associated.Methods in org.apache.catalina.session that return Container Modifier and Type Method Description ContainerManagerBase. getContainer()Return the Container with which this Manager is associated.Methods in org.apache.catalina.session with parameters of type Container Modifier and Type Method Description voidManagerBase. setContainer(Container container)Set the Container with which this Manager is associated.voidPersistentManagerBase. setContainer(Container container)Set the Container with which this Manager has been associated.voidStandardManager. setContainer(Container container)Set the Container with which this Manager has been associated. -
Uses of Container in org.apache.catalina.valves
Fields in org.apache.catalina.valves declared as Container Modifier and Type Field Description protected ContainerValveBase. containerThe Container whose pipeline this Valve is a component of.Methods in org.apache.catalina.valves that return Container Modifier and Type Method Description ContainerValveBase. getContainer()Return the Container with which this Valve is associated, if any.Methods in org.apache.catalina.valves with parameters of type Container Modifier and Type Method Description voidValveBase. setContainer(Container container)Set the Container with which this Valve is associated, if any. -
Uses of Container in org.glassfish.web.ha.authenticator
Constructors in org.glassfish.web.ha.authenticator with parameters of type Container Constructor Description HASingleSignOnEntry(Container container, HASingleSignOnEntryMetadata m, JavaEEIOUtils ioUtils)
-