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.dwrp   
org.directwebremoting.extend This 'extend' package contains many of the classes that are interesting to very advanced DWR users, and people embedding or extending DWR. 
org.directwebremoting.fluent   
org.directwebremoting.guice This package provides support for Guice dependency injection in DWR-based web applications. 
org.directwebremoting.impl   
org.directwebremoting.json.parse   
org.directwebremoting.json.serialize   
org.directwebremoting.servlet   
org.directwebremoting.spring   
 

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
static ServerContext ServerContextFactory.attach(Container container)
          Internal method to allow us to get the Builder from which we will get ServerContext objects.
static Hub HubFactory.attach(Container container)
          Internal method to allow us to get the Builder from which we will get Hub objects.
static void WebContextFactory.attach(Container container)
          Internal method to allow us to get the WebContextBuilder from which we will get WebContext objects.
 void WebContextFactory.WebContextBuilder.engageThread(Container container, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Make the current thread know what the current request 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.dwrp
 

Methods in org.directwebremoting.dwrp with parameters of type Container
 void BasePollHandler.setContainer(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
static TaskDispatcher TaskDispatcherFactory.attach(Container container)
          Internal method to allow us to get the Builder from which we will get TaskDispatcher objects.
 T Builder.attach(Container container)
          This method should be called during setup only.
 T Factory.attach(Container container)
          Internal method to allow us to get the Builder from which we will get created objects.
static CallbackHelper CallbackHelperFactory.attach(Container container)
          Internal method to allow us to get the Builder from which we will get CallbackHelper objects.
 void Configurator.configure(Container container)
          Do the Configuration actions
static boolean ContainerUtil.getBooleanSetting(Container container, java.lang.String name, boolean defaultValue)
          Get an boolean setting from the Container.
static Handler ContainerUtil.getHandlerForUrlProperty(Container container, java.lang.String property)
          Look up the Handler associated with the URL in the named URL property.
static int ContainerUtil.getIntSetting(Container container, java.lang.String name, int defaultValue)
          Get an integer setting from the Container.
 

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 StartupUtil.createAndSetupDefaultContainer(javax.servlet.ServletConfig servletConfig)
          A combination of StartupUtil.createDefaultContainer(ServletConfig) and StartupUtil.setupDefaultContainer(DefaultContainer, ServletConfig).
static Container TestEnvironment.getContainer()
           
 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
 java.util.Collection<Container> StartupUtil.SerializableContainerListWrapper.getAll()
           
static java.util.List<Container> StartupUtil.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 StartupUtil.SerializableContainerListWrapper.add(Container container)
           
 void FileStoreDownloadManager.afterContainerSetup(Container container)
           
 void DefaultScriptSessionManager.afterContainerSetup(Container container)
           
 T DefaultBuilder.attach(Container container)
           
 ServerContext DefaultServerContextBuilder.attach(Container container)
           
 void DwrXmlConfigurator.configure(Container container)
           
static void StartupUtil.configure(Container container, java.util.List<Configurator> configurators)
          Allow all the configurators to have a go at the container in turn
static void StartupUtil.configureContainerFully(Container container, javax.servlet.ServletConfig servletConfig)
          Run all the default configuration options on a Container
static boolean StartupUtil.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 StartupUtil.configureFromDefaultDwrXml(Container container, javax.servlet.ServletConfig servletConfig)
          Configure using the users dwr.xml that sits next in WEB-INF
static boolean StartupUtil.configureFromInitParams(Container container, javax.servlet.ServletConfig servletConfig)
          Add configurators from init params to the end of the list of configurators.
static void StartupUtil.configureFromSystemDwrXml(Container container)
          Configure using the system dwr.xml from within the JAR file.
static void StartupUtil.debugConfig(Container container)
          Create a bunch of debug information about a container
 void DefaultWebContextBuilder.engageThread(Container container, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
           
static void StartupUtil.outOfContainerDestroy(Container container)
          Clean up the current thread when StartupUtil.outOfContainerInit() has been called.
 void DefaultServerContext.setContainer(Container container)
          Injection point for Container
 

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
 

Uses of Container in org.directwebremoting.json.parse
 

Methods in org.directwebremoting.json.parse with parameters of type Container
static JsonParser JsonParserFactory.attach(Container container)
          Internal method to allow us to get the Builder from which we will get JsonParser objects.
 

Uses of Container in org.directwebremoting.json.serialize
 

Methods in org.directwebremoting.json.serialize with parameters of type Container
static JsonSerializer JsonSerializerFactory.attach(Container container)
          Internal method to allow us to get the Builder from which we will get JsonSerializer objects.
 

Uses of Container in org.directwebremoting.servlet
 

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

Methods in org.directwebremoting.servlet with parameters of type Container
 void UrlProcessor.afterContainerSetup(Container container)
           
 void DojoInterfaceHandler.setContainer(Container container)
          We use the container to find the DojoDtoAllHandler
 void InterfaceHandler.setContainer(Container container)
          We use the container to find the DtoAllHandler
 

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)
           
 


Copyright ยจ 2008