Uses of Interface
org.directwebremoting.ServerContext

Packages that use ServerContext
org.directwebremoting This package contains all the classes that are interesting to DWR users going about normal DWR business. 
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.impl   
org.directwebremoting.jms   
org.directwebremoting.json.parse   
org.directwebremoting.json.serialize   
 

Uses of ServerContext in org.directwebremoting
 

Subinterfaces of ServerContext in org.directwebremoting
 interface WebContext
          Class to enable us to access servlet parameters.
 

Methods in org.directwebremoting that return ServerContext
static ServerContext ServerContextFactory.attach(Container container)
          Internal method to allow us to get the Builder from which we will get ServerContext objects.
static ServerContext ServerContextFactory.get()
          Accessor for the current ServerContext.
static ServerContext ServerContextFactory.get(javax.servlet.ServletContext ctx)
          Deprecated. Use the plain ServerContextFactory.get() version
 

Methods in org.directwebremoting with parameters of type ServerContext
static Hub HubFactory.get(ServerContext ctx)
          Accessor for the current Hub in more complex setups.
static void Browser.withAllSessions(ServerContext serverContext, java.lang.Runnable task)
          As Browser.withAllSessions(Runnable), but for use when there is more than one copy of DWR in the ServletContext.
static void Browser.withAllSessionsFiltered(ServerContext serverContext, ScriptSessionFilter filter, java.lang.Runnable task)
          As Browser.withAllSessionsFiltered(ScriptSessionFilter, Runnable), but for use when there is more than one copy of DWR in the ServletContext.
static void Browser.withPage(ServerContext serverContext, java.lang.String page, java.lang.Runnable task)
          As Browser.withPage(String, Runnable), but for use when there is more than one copy of DWR in the ServletContext.
static void Browser.withPageFiltered(ServerContext serverContext, java.lang.String page, ScriptSessionFilter filter, java.lang.Runnable task)
          As Browser.withPageFiltered(java.lang.String, org.directwebremoting.ScriptSessionFilter, java.lang.Runnable), but for use when there is more than one copy of DWR in a ServletContext.
static void Browser.withSession(ServerContext serverContext, java.lang.String sessionId, java.lang.Runnable task)
          As Browser.withSession(String, Runnable), but for use when there is more than one copy of DWR in a ServletContext.
 

Uses of ServerContext in org.directwebremoting.extend
 

Subinterfaces of ServerContext in org.directwebremoting.extend
 interface RealWebContext
          An interface that extends WebContext with some functions that should not be used by end users, but could be useful to system extenders.
 

Methods in org.directwebremoting.extend with parameters of type ServerContext
static TaskDispatcher TaskDispatcherFactory.get(ServerContext ctx)
          Accessor for the current TaskDispatcher in more complex setups.
 T Builder.get(ServerContext context)
          Get the object that is associated with this thread, whilst specifying the correct ServerContext.
 T Factory.get(ServerContext ctx)
          Accessor for the current object in more complex setups.
static CallbackHelper CallbackHelperFactory.get(ServerContext ctx)
          Accessor for the current CallbackHelper in more complex setups.
 

Constructors in org.directwebremoting.extend with parameters of type ServerContext
PageScriptSessionFilter(ServerContext serverContext, java.lang.String page)
           
 

Uses of ServerContext in org.directwebremoting.impl
 

Classes in org.directwebremoting.impl that implement ServerContext
 class DefaultServerContext
          The Default implementation of ServerContext
 class DefaultWebContext
          A default implementation of WebContext.
 

Methods in org.directwebremoting.impl that return ServerContext
 ServerContext DefaultServerContextBuilder.attach(Container container)
           
 ServerContext DefaultServerContextBuilder.get()
           
 ServerContext DefaultServerContextBuilder.get(ServerContext context)
           
static ServerContext StartupUtil.getSingletonServerContext()
          If there is only once instance of DWR defined in a ServletContext then we can get at it using this method.
 

Methods in org.directwebremoting.impl that return types with arguments of type ServerContext
static java.util.Collection<ServerContext> StartupUtil.getAllServerContexts()
          Returns a Collection of all ServerContexts in which DWR has been defined.
 

Methods in org.directwebremoting.impl with parameters of type ServerContext
 T DefaultBuilder.get(ServerContext serverContext)
           
 ServerContext DefaultServerContextBuilder.get(ServerContext context)
           
 

Uses of ServerContext in org.directwebremoting.jms
 

Methods in org.directwebremoting.jms that return ServerContext
 ServerContext DwrConnection.getServerContext()
           
 

Methods in org.directwebremoting.jms with parameters of type ServerContext
 void DwrConnection.setServerContext(ServerContext serverContext)
           
 

Uses of ServerContext in org.directwebremoting.json.parse
 

Methods in org.directwebremoting.json.parse with parameters of type ServerContext
static JsonParser JsonParserFactory.get(ServerContext ctx)
          Accessor for the current JsonParser in more complex setups.
 

Uses of ServerContext in org.directwebremoting.json.serialize
 

Methods in org.directwebremoting.json.serialize with parameters of type ServerContext
static JsonSerializer JsonSerializerFactory.get(ServerContext ctx)
          Accessor for the current JsonSerializer in more complex setups.
 


Copyright ยจ 2008