|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ScriptSession | |
|---|---|
| org.directwebremoting | This package contains all the classes that are interesting to DWR users going about normal DWR business. |
| org.directwebremoting.datasync | |
| org.directwebremoting.event | |
| 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.guice | This package provides support for Guice dependency injection in DWR-based web applications. |
| org.directwebremoting.impl | |
| org.directwebremoting.proxy | |
| org.directwebremoting.proxy.dwr | |
| org.directwebremoting.proxy.scriptaculous | |
| org.directwebremoting.ui | |
| Uses of ScriptSession in org.directwebremoting |
|---|
| Methods in org.directwebremoting that return ScriptSession | |
|---|---|
ScriptSession |
WebContext.getScriptSession()
Get the script session that represents the currently viewed page in the same way that an HttpSession represents a cookie. |
ScriptSession |
ServerContext.getScriptSessionById(java.lang.String sessionId)
Deprecated. Use Browser.withSession(String, Runnable) instead |
| Methods in org.directwebremoting that return types with arguments of type ScriptSession | |
|---|---|
java.util.Collection<ScriptSession> |
ServerContext.getAllScriptSessions()
Deprecated. Use Browser.withAllSessions(Runnable) instead |
java.util.Collection<ScriptSession> |
ServerContext.getScriptSessionsByPage(java.lang.String url)
Deprecated. Use Browser.withPage(String, Runnable) instead |
static java.util.Collection<ScriptSession> |
Browser.getTargetSessions()
This method discovers the sessions that are currently being targeted by browser updates. |
| Methods in org.directwebremoting with parameters of type ScriptSession | |
|---|---|
boolean |
ScriptSessionFilter.match(ScriptSession session)
Does this ScriptSession match according to the matching pattern
declared by this filter. |
| Uses of ScriptSession in org.directwebremoting.datasync |
|---|
| Constructor parameters in org.directwebremoting.datasync with type arguments of type ScriptSession | |
|---|---|
PerScriptSessionStoreProvider(StoreProviderFactory<T,ScriptSession> factory,
java.lang.String attributeName)
|
|
| Uses of ScriptSession in org.directwebremoting.event |
|---|
| Methods in org.directwebremoting.event that return ScriptSession | |
|---|---|
ScriptSession |
ScriptSessionEvent.getSession()
Return the session that changed. |
| Constructors in org.directwebremoting.event with parameters of type ScriptSession | |
|---|---|
ScriptSessionBindingEvent(ScriptSession session,
java.lang.String name)
Constructs an event that notifies an object that it has been bound to or unbound from a session. |
|
ScriptSessionBindingEvent(ScriptSession session,
java.lang.String name,
java.lang.Object value)
Constructs an event that notifies an object that it has been bound to or unbound from a session. |
|
ScriptSessionEvent(ScriptSession source)
Construct a session event from the given source. |
|
| Uses of ScriptSession in org.directwebremoting.extend |
|---|
| Subinterfaces of ScriptSession in org.directwebremoting.extend | |
|---|---|
interface |
RealScriptSession
RealScriptSession is the real interface that should be implemented in place of ScriptSession. |
| Methods in org.directwebremoting.extend that return ScriptSession | |
|---|---|
ScriptSession |
ScriptSessionManager.getScriptSessionById(java.lang.String scriptSessionId)
Lookup the ScriptSession corresponding to a ScriptSession id. |
| Methods in org.directwebremoting.extend that return types with arguments of type ScriptSession | |
|---|---|
java.util.Collection<ScriptSession> |
ScriptSessionManager.getAllScriptSessions()
Get a list of all the currently known ScriptSessions by id. |
java.util.Collection<ScriptSession> |
ScriptSessionManager.getScriptSessionsByHttpSessionId(java.lang.String httpSessionId)
Lookup all the windows associated with a given browser |
java.util.Collection<ScriptSession> |
TaskDispatcher.getTargetSessions()
This method discovers the sessions that are currently being targeted by browser updates. |
| Methods in org.directwebremoting.extend with parameters of type ScriptSession | |
|---|---|
boolean |
AndScriptSessionFilter.match(ScriptSession session)
|
boolean |
PageScriptSessionFilter.match(ScriptSession session)
|
boolean |
IdScriptSessionFilter.match(ScriptSession session)
|
boolean |
AllScriptSessionFilter.match(ScriptSession session)
|
| Constructors in org.directwebremoting.extend with parameters of type ScriptSession | |
|---|---|
DefaultJavascriptFunction(ScriptSession session,
java.lang.String id)
|
|
DefaultJavascriptObject(ScriptSession session,
java.lang.String id)
|
|
| Uses of ScriptSession in org.directwebremoting.guice |
|---|
| Fields in org.directwebremoting.guice with type parameters of type ScriptSession | |
|---|---|
static ContextScope<ScriptSession> |
DwrScopes.SCRIPT
DWR script session scope. |
| Uses of ScriptSession in org.directwebremoting.impl |
|---|
| Classes in org.directwebremoting.impl that implement ScriptSession | |
|---|---|
class |
DefaultScriptSession
An implementation of ScriptSession and RealScriptSession. |
| Methods in org.directwebremoting.impl that return ScriptSession | |
|---|---|
ScriptSession |
DefaultWebContext.getScriptSession()
|
ScriptSession |
DefaultScriptSessionManager.getScriptSessionById(java.lang.String scriptSessionId)
|
ScriptSession |
TransientScriptSessionManager.getScriptSessionById(java.lang.String scriptSessionId)
|
ScriptSession |
DefaultServerContext.getScriptSessionById(java.lang.String sessionId)
|
| Methods in org.directwebremoting.impl that return types with arguments of type ScriptSession | |
|---|---|
java.util.Collection<ScriptSession> |
DefaultScriptSessionManager.getAllScriptSessions()
|
java.util.Collection<ScriptSession> |
TransientScriptSessionManager.getAllScriptSessions()
|
java.util.Collection<ScriptSession> |
DefaultServerContext.getAllScriptSessions()
|
java.util.Collection<ScriptSession> |
DefaultScriptSessionManager.getScriptSessionsByHttpSessionId(java.lang.String httpSessionId)
|
java.util.Collection<ScriptSession> |
TransientScriptSessionManager.getScriptSessionsByHttpSessionId(java.lang.String httpSessionId)
|
java.util.Collection<ScriptSession> |
DefaultServerContext.getScriptSessionsByPage(java.lang.String url)
|
java.util.Collection<ScriptSession> |
DefaultTaskDispatcher.getTargetSessions()
|
| Uses of ScriptSession in org.directwebremoting.proxy |
|---|
| Methods in org.directwebremoting.proxy with parameters of type ScriptSession | |
|---|---|
void |
ScriptProxy.addScriptSession(ScriptSession scriptSession)
Deprecated. |
| Method parameters in org.directwebremoting.proxy with type arguments of type ScriptSession | |
|---|---|
void |
ScriptProxy.addScriptSessions(java.util.Collection<ScriptSession> addScriptSessions)
Deprecated. |
| Constructors in org.directwebremoting.proxy with parameters of type ScriptSession | |
|---|---|
ScriptProxy(ScriptSession scriptSession)
Deprecated. Http thread constructor |
|
| Constructor parameters in org.directwebremoting.proxy with type arguments of type ScriptSession | |
|---|---|
ScriptProxy(java.util.Collection<ScriptSession> scriptSessions)
Deprecated. Non-http thread constructor |
|
| Uses of ScriptSession in org.directwebremoting.proxy.dwr |
|---|
| Constructors in org.directwebremoting.proxy.dwr with parameters of type ScriptSession | |
|---|---|
Engine(ScriptSession scriptSession)
Deprecated. Http thread constructor that alters a single browser |
|
Util(ScriptSession scriptSession)
Deprecated. Http thread constructor that alters a single browser |
|
| Constructor parameters in org.directwebremoting.proxy.dwr with type arguments of type ScriptSession | |
|---|---|
Engine(java.util.Collection<ScriptSession> scriptSessions)
Deprecated. Http thread constructor that alters a number of browsers |
|
Util(java.util.Collection<ScriptSession> scriptSessions)
Deprecated. Http thread constructor that alters a number of browsers |
|
| Uses of ScriptSession in org.directwebremoting.proxy.scriptaculous |
|---|
| Constructors in org.directwebremoting.proxy.scriptaculous with parameters of type ScriptSession | |
|---|---|
Effect(ScriptSession scriptSession)
Deprecated. Http thread constructor that alters a single browser |
|
| Constructor parameters in org.directwebremoting.proxy.scriptaculous with type arguments of type ScriptSession | |
|---|---|
Effect(java.util.Collection<ScriptSession> scriptSessions)
Deprecated. Http thread constructor that alters a number of browsers |
|
| Uses of ScriptSession in org.directwebremoting.ui |
|---|
| Methods in org.directwebremoting.ui that return types with arguments of type ScriptSession | |
|---|---|
java.util.Collection<ScriptSession> |
Callback.getScriptSessions()
Accessor for the ScriptSessions that will reply to the question. |
| Constructors in org.directwebremoting.ui with parameters of type ScriptSession | |
|---|---|
Callback(ScriptSession session)
Used when you need to specify the browser that will be providing the response |
|
| Constructor parameters in org.directwebremoting.ui with type arguments of type ScriptSession | |
|---|---|
Callback(java.util.Collection<ScriptSession> sessionList)
Used when you need to specify a group of browsers that will be providing the responses. |
|
|
Copyright ยจ 2008 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||