Business Components

Uses of Interface
oracle.jbo.common.ampool.SessionCookie

Packages that use.*
PackageDescription
oracle.jbo.common.ampool   
oracle.jbo.html   
oracle.jbo.http   
 

Uses of SessionCookie in oracle.jbo.common.ampool
 

Classes in oracle.jbo.common.ampool that implement SessionCookie
TypeName
 class SessionCookieImpl
          Default SessionCookie implementation.
 

Methods in oracle.jbo.common.ampool that return SessionCookie
TypeName
 SessionCookie ApplicationPool.createSessionCookie(java.lang.String applicationId, java.lang.String cookieValue, java.util.Properties properties)
          Create a session cookie for access to this pool.
 SessionCookie DefaultSessionCookieFactory.createSessionCookie(java.lang.String name, java.lang.String value, ApplicationPool pool, java.util.Properties properties)
           
 SessionCookie ApplicationPoolException.getSessionCookie()
           
 SessionCookie ApplicationPoolImpl.createSessionCookie(java.lang.String applicationId, java.lang.String cookieValue, java.util.Properties properties)
           
 SessionCookie SessionCookieFactory.createSessionCookie(java.lang.String name, java.lang.String value, ApplicationPool pool, java.util.Properties properties)
          Returns a SessionCookie instance.
 

Methods in oracle.jbo.common.ampool with parameters of type SessionCookie
TypeName
 ApplicationModule ApplicationPool.useApplicationModule(SessionCookie cookie, boolean checkout)
          Returns an application module for the specified session cookie.
 void ApplicationPool.releaseApplicationModule(SessionCookie cookie, boolean manageState)
          Mark the session's application module as available for reuse by other sessions.
 void ApplicationPool.addSessionCookie(SessionCookie cookie)
          Add an existing session cookie to the pool.
 void ApplicationPool.removeSessionCookie(SessionCookie cookie)
          Destroy a session cookie.
 boolean ApplicationPool.validateSessionCookie(SessionCookie cookie)
          Validate that a session cookie is a valid handle for this pool.
 ApplicationModule DefaultConnectionStrategy.createApplicationModule(SessionCookie cookie, EnvInfoProvider envInfo)
           
 void DefaultConnectionStrategy.connect(ApplicationModule applicationModule, SessionCookie cookie, EnvInfoProvider envInfo)
           
 void DefaultConnectionStrategy.reconnect(ApplicationModule applicationModule, SessionCookie cookie, EnvInfoProvider envInfo)
           
 void DefaultConnectionStrategy.disconnect(ApplicationModule applicationModule, boolean retainState, SessionCookie cookie)
           
 void SessionCookie.copyInto(SessionCookie cookie)
          Copies the state of this cookie into the target cookie.
 void ApplicationPoolException.setSessionCookie(SessionCookie cookie)
           
 void ApplicationPoolImpl.addSessionCookie(SessionCookie cookie)
           
 void ApplicationPoolImpl.removeSessionCookie(SessionCookie cookie)
           
 void ApplicationPoolImpl.releaseApplicationModule(SessionCookie cookie, boolean manageState)
           
 ApplicationModule ApplicationPoolImpl.useApplicationModule(SessionCookie cookie, boolean checkout)
           
 boolean ApplicationPoolImpl.validateSessionCookie(SessionCookie cookie)
           
 void SessionCookieImpl.copyInto(SessionCookie cookie)
           
 ApplicationModule ConnectionStrategy.createApplicationModule(SessionCookie cookie, EnvInfoProvider envInfo)
          Create an application module.
 void ConnectionStrategy.connect(ApplicationModule applicationModule, SessionCookie cookie, EnvInfoProvider envInfo)
          Connect an application module.
 void ConnectionStrategy.reconnect(ApplicationModule applicationModule, SessionCookie cookie, EnvInfoProvider envInfo)
          Reconnect an application module
 void ConnectionStrategy.disconnect(ApplicationModule applicationModule, boolean retainState, SessionCookie cookie)
          Disconnect an application module
 

Uses of SessionCookie in oracle.jbo.html
 

Methods in oracle.jbo.html with parameters of type SessionCookie
TypeName
static RequestParameters HtmlServices.getRequestParameters(javax.servlet.http.HttpServletRequest request, javax.servlet.ServletResponse response, SessionCookie cookie)
          Internal: Applications should not use this method.
 

Uses of SessionCookie in oracle.jbo.http
 

Subinterfaces of SessionCookie in oracle.jbo.http
TypeName
 interface HttpSessionCookie
          An interface for web session cookies.
 

Classes in oracle.jbo.http that implement SessionCookie
TypeName
 class HttpSessionCookieImpl
          Default HttpSessionCookie implementation.
 class SharedSessionCookieImpl
          A shared application module handle.
 

Methods in oracle.jbo.http that return SessionCookie
TypeName
 SessionCookie SharedSessionCookieFactory.createSessionCookie(java.lang.String applicationId, java.lang.String sessionId, ApplicationPool pool, java.util.Properties properties)
           
 SessionCookie HttpContainer.getSessionCookie(java.lang.String applicationId)
          Get a session cookie instance from the http session container.
 SessionCookie[] HttpContainer.getSessionCookies()
          Get all session cookie instances from the http session container.
static SessionCookie HttpContainer.findSessionCookie(javax.servlet.http.HttpSession session, java.lang.String applicationId, java.lang.String applicationDefinitionName, java.util.Properties cookieProperties)
           
static SessionCookie HttpContainer.findSessionCookie(javax.servlet.http.HttpSession session, java.lang.String applicationId, java.lang.String poolName, java.lang.String configPackage, java.lang.String configSection, java.util.Properties poolProps, java.util.Properties cookieProps)
           
 SessionCookie HttpSessionCookieFactory.createSessionCookie(java.lang.String applicationId, java.lang.String sessionId, ApplicationPool pool, java.util.Properties properties)
          Creates a HttpSessionCookieImpl instance.
 

Methods in oracle.jbo.http with parameters of type SessionCookie
TypeName
 java.lang.String HttpSessionCookieHelper.encodeURL(java.lang.String url, SessionCookie[] cookies)
          Encode the specified url with the specified HttpSessionCookies.
 java.lang.String HttpSessionCookieHelperImpl.encodeURL(java.lang.String url, SessionCookie[] cookies)
           
 void HttpContainer.setSessionCookie(java.lang.String applicationId, SessionCookie cookie)
          Set a session cookie instance in the http session container.
 


Business Components