Uses of Interface
org.directwebremoting.Container

Packages that use Container
org.directwebremoting This package contains all the classes that are interesting to DWR users going about normal DWR business. 
org.directwebremoting.annotations Provides annotations support for DWR. 
org.directwebremoting.extend   
org.directwebremoting.fluent   
org.directwebremoting.guice This package provides support for Guice dependency injection in DWR-based web applications. 
org.directwebremoting.impl   
org.directwebremoting.servlet   
org.directwebremoting.spring   
uk.ltd.getahead.dwr   
 

Uses of Container in org.directwebremoting
 

Methods in org.directwebremoting that return Container
 Container ServerContext.getContainer()
          Accessor for the IoC container.
 

Methods in org.directwebremoting with parameters of type Container
 void WebContextFactory.WebContextBuilder.set(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, javax.servlet.ServletConfig config, javax.servlet.ServletContext context, Container container)
          Make the current thread know what the current request is.
 void ServerContextFactory.ServerContextBuilder.set(javax.servlet.ServletConfig config, javax.servlet.ServletContext context, Container container)
          Make the current webapp know what the current config/context is.
 

Uses of Container in org.directwebremoting.annotations
 

Methods in org.directwebremoting.annotations with parameters of type Container
 void AnnotationsConfigurator.configure(Container container)
           
 

Uses of Container in org.directwebremoting.extend
 

Methods in org.directwebremoting.extend with parameters of type Container
 void InitializingBean.afterContainerSetup(Container container)
          This method allows the bean instance to perform initialization only possible when all bean properties have been set
 void Configurator.configure(Container container)
          Do the Configuration actions
 

Uses of Container in org.directwebremoting.fluent
 

Methods in org.directwebremoting.fluent with parameters of type Container
 void FluentConfigurator.configure(Container container)
           
 

Uses of Container in org.directwebremoting.guice
 

Methods in org.directwebremoting.guice with parameters of type Container
 void InternalConfigurator.configure(Container container)
           
 

Uses of Container in org.directwebremoting.impl
 

Classes in org.directwebremoting.impl that implement Container
 class AbstractContainer
          An implementation of some of the simpler methods from Container This class has nothing whatsoever to do with ContainerAbstraction.
 class DefaultContainer
          DefaultContainer is like a mini-IoC container for DWR.
 

Methods in org.directwebremoting.impl that return Container
static Container ContainerUtil.createAndSetupDefaultContainer(javax.servlet.ServletConfig servletConfig)
          A combination of ContainerUtil.createDefaultContainer(ServletConfig) and ContainerUtil.setupDefaultContainer(DefaultContainer, ServletConfig).
 Container DefaultServerContext.getContainer()
           
static Container StartupUtil.outOfContainerInit()
          A way to setup DWR outside of any Containers.
 

Methods in org.directwebremoting.impl that return types with arguments of type Container
static java.util.List<Container> ContainerUtil.getAllPublishedContainers(javax.servlet.ServletContext servletContext)
          Get a list of all known Containers for the given ServletContext
 

Methods in org.directwebremoting.impl with parameters of type Container
 void FileStoreDownloadManager.afterContainerSetup(Container container)
           
 void DwrXmlConfigurator.configure(Container container)
           
static void ContainerUtil.configure(Container container, java.util.List<Configurator> configurators)
          Allow all the configurators to have a go at the container in turn
static void ContainerUtil.configureContainerFully(Container container, javax.servlet.ServletConfig servletConfig)
          Run all the default configuration options on a Container
static boolean ContainerUtil.configureFromAnnotations(Container container)
          Annotations must not break 1.3, so we use reflection to create an org.directwebremoting.annotations.AnnotationsConfigurator and the catch all sorts of random exceptions for the benefit of Websphere.
static void ContainerUtil.configureFromDefaultDwrXml(Container container)
          Configure using the users dwr.xml that sits next in WEB-INF
static boolean ContainerUtil.configureFromInitParams(Container container, javax.servlet.ServletConfig servletConfig)
          Add configurators from init params to the end of the list of configurators.
static void ContainerUtil.configureFromSystemDwrXml(Container container)
          Configure using the system dwr.xml from within the JAR file.
static void ContainerUtil.debugConfig(Container container)
          Create a bunch of debug information about a container
static void StartupUtil.initContainerBeans(javax.servlet.ServletConfig servletConfig, javax.servlet.ServletContext servletContext, Container container)
          Get the various objects out of the Container, and configure them.
static HubFactory.HubBuilder StartupUtil.initHub(javax.servlet.ServletContext servletContext, Container container)
          Deprecated. Use StartupUtil.initContainerBeans(ServletConfig, ServletContext, Container)
static ServerContextFactory.ServerContextBuilder StartupUtil.initServerContext(javax.servlet.ServletConfig servletConfig, javax.servlet.ServletContext servletContext, Container container)
          Deprecated. Use StartupUtil.initContainerBeans(ServletConfig, ServletContext, Container)
static WebContextFactory.WebContextBuilder StartupUtil.initWebContext(javax.servlet.ServletConfig servletConfig, javax.servlet.ServletContext servletContext, Container container)
          Deprecated. Use StartupUtil.initContainerBeans(ServletConfig, ServletContext, Container)
static void StartupUtil.outOfContainerDestroy(Container container)
          Clean up the current thread when StartupUtil.outOfContainerInit() has been called.
static void ContainerUtil.prepareForWebContextFilter(javax.servlet.ServletContext context, javax.servlet.ServletConfig config, Container container, WebContextFactory.WebContextBuilder webContextBuilder, javax.servlet.http.HttpServlet servlet)
          Make some changes to the ServletContext so DwrWebContextFilter can find the Container etc.
static void ContainerUtil.publishContainer(Container container, javax.servlet.ServletConfig servletConfig)
          If helps some situations if people can get at the container by looking in the servlet context, under some name.
 void DefaultWebContextBuilder.set(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, javax.servlet.ServletConfig config, javax.servlet.ServletContext context, Container container)
           
 void DefaultServerContextBuilder.set(javax.servlet.ServletConfig config, javax.servlet.ServletContext context, Container container)
           
 

Method parameters in org.directwebremoting.impl with type arguments of type Container
static void ContainerUtil.shutdownServerLoadMonitorsInContainerList(java.util.List<Container> containers, java.lang.String title)
          Internal use only.
 

Constructors in org.directwebremoting.impl with parameters of type Container
ContainerMap(Container container, boolean filterNonStringValues)
          Create a ContainerMap with a Container to proxy requests to
DefaultServerContext(javax.servlet.ServletConfig config, javax.servlet.ServletContext context, Container container)
          Build a new DefaultServerContext
DefaultWebContext(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, javax.servlet.ServletConfig config, javax.servlet.ServletContext context, Container container)
          Create a new DefaultWebContext
 

Uses of Container in org.directwebremoting.servlet
 

Methods in org.directwebremoting.servlet that return Container
 Container DwrServlet.getContainer()
          Accessor for the DWR IoC container.
 

Methods in org.directwebremoting.servlet with parameters of type Container
 void UrlProcessor.afterContainerSetup(Container container)
           
 

Uses of Container in org.directwebremoting.spring
 

Classes in org.directwebremoting.spring that implement Container
 class SpringContainer
          A Container implementation that looks up all beans from the configuration specified in a Spring context.
 

Methods in org.directwebremoting.spring with parameters of type Container
 void SpringConfigurator.configure(Container container)
           
 

Uses of Container in uk.ltd.getahead.dwr
 

Methods in uk.ltd.getahead.dwr that return Container
 Container ExecutionContext.getContainer()
          Deprecated.  
 


Copyright ¬ 2005