Uses of Class
nablarch.common.web.session.SessionEntry
Packages that use SessionEntry
Package
Description
本パッケージでは、HTTPSessionを抽象化した機能を提供する。
HTTPSessionと同等の機能に加え、従来の枠組みでは実現できなかった各種機能を追加する。
本パッケージでは、セッションの内容を保存する機能をもったモジュール群を提供する。
-
Uses of SessionEntry in nablarch.common.web.session
Methods in nablarch.common.web.session that return types with arguments of type SessionEntryModifier and TypeMethodDescriptionprotected List<SessionEntry>
SessionStore.decode
(byte[] encoded) セッションエントリリストをデコードする。Session.iterator()
abstract List<SessionEntry>
SessionStore.load
(String sessionId, ExecutionContext executionContext) セッションの内容をストアからロードする。 セッションの内容が存在しない場合は空リストを返す。Methods in nablarch.common.web.session with parameters of type SessionEntryMethod parameters in nablarch.common.web.session with type arguments of type SessionEntryModifier and TypeMethodDescriptionprotected byte[]
SessionStore.encode
(List<SessionEntry> entries) セッションエントリリストをエンコードする。abstract void
SessionStore.save
(String sessionId, List<SessionEntry> entries, ExecutionContext executionContext) セッションの内容をストアに保存する。 -
Uses of SessionEntry in nablarch.common.web.session.store
Methods in nablarch.common.web.session.store that return types with arguments of type SessionEntryModifier and TypeMethodDescriptionDbStore.load
(String sessionId, ExecutionContext executionContext) HiddenStore.load
(String currentSessionId, ExecutionContext executionContext) HttpSessionStore.load
(String sessionId, ExecutionContext executionContext) Method parameters in nablarch.common.web.session.store with type arguments of type SessionEntryModifier and TypeMethodDescriptionvoid
DbStore.save
(String sessionId, List<SessionEntry> entries, ExecutionContext executionContext) ユーザセッションテーブルにセッション情報を保存する。void
HiddenStore.save
(String sessionId, List<SessionEntry> entries, ExecutionContext executionContext) セッションの内容をストアに保存する。void
HttpSessionStore.save
(String sessionId, List<SessionEntry> entries, ExecutionContext executionContext)