Uses of Interface
uk.org.ogsadai.sessions.SessionParticipant

Packages that use SessionParticipant
uk.org.ogsadai.activity Contains the core interfaces and classes of the Activity Framework.?
uk.org.ogsadai.engine Contains the core classes and interfaces of the engine component which is chiefly responsible for processing requests and building responses.?
uk.org.ogsadai.sessions Contains the core classes and interfaces used to support sessions.?
uk.org.ogsadai.sessions.impl Contains implementations of the sessions interfaces to provide support for transient sessions.?
?

Uses of SessionParticipant in uk.org.ogsadai.activity
?

Classes in uk.org.ogsadai.activity that implement SessionParticipant
?class ActivityRequest
??????????Implementation of interface Request that encapsulates all of the objects required to create, process and obtain responses from a single request.
?

Uses of SessionParticipant in uk.org.ogsadai.engine
?

Subinterfaces of SessionParticipant in uk.org.ogsadai.engine
?interface Request
??????????This is the interface that the RequestEngine uses for processing requests without concerning itself with the implementation.
?

Uses of SessionParticipant in uk.org.ogsadai.sessions
?

Fields in uk.org.ogsadai.sessions declared as SessionParticipant
private ?SessionParticipant SessionEvent.mParticipant
??????????The session participant involved in the event, if one was involved
?

Methods in uk.org.ogsadai.sessions that return SessionParticipant
?SessionParticipant SessionEvent.getSessionParticipant()
??????????Returns the SessionParticipant that was involved in the event, or null if no participant was involved.
?

Methods in uk.org.ogsadai.sessions with parameters of type SessionParticipant
?void InternalSession.admit(SessionParticipant?participant)
??????????Admits a new session participant to the session.
?void InternalSession.release(SessionParticipant?participant)
??????????Releases the specified session participant from the session.
?void SessionCoordinator.join(SessionParticipant?participant)
??????????Joins the specified session participant to a session that matches its requirments.
?void SessionCoordinator.release(SessionParticipant?participant)
??????????Releases the specified session participant from the session to which it is joined.
?

Constructors in uk.org.ogsadai.sessions with parameters of type SessionParticipant
SessionEvent(InternalSession?source, SessionParticipant?participant)
??????????Constructs a SessionEvent representing an interaction between a session and a session participant.
?

Uses of SessionParticipant in uk.org.ogsadai.sessions.impl
?

Fields in uk.org.ogsadai.sessions.impl declared as SessionParticipant
private ?SessionParticipant TransientInternalSession.mParticipant
???????????
?

Methods in uk.org.ogsadai.sessions.impl with parameters of type SessionParticipant
?void SimpleSessionCoordinator.join(SessionParticipant?participant)
???????????
?void SimpleSessionCoordinator.release(SessionParticipant?participant)
???????????
?void TransientInternalSession.admit(SessionParticipant?participant)
???????????
?void TransientInternalSession.release(SessionParticipant?participant)
???????????
?