public class StandaloneExecutionContext extends ExecutionContext
ExecutionContextの継承クラス。FW_PREFIX, THROWN_APPLICATION_EXCEPTION_KEY, THROWN_EXCEPTION_KEY| コンストラクタと説明 | 
|---|
StandaloneExecutionContext()  | 
| 修飾子とタイプ | メソッドと説明 | 
|---|---|
<T> T | 
getSessionStoredVar(java.lang.String varName)
非推奨です。 
 
セッションストアは使用できません。代わりにセッションスコープを使用してください。
  
ExecutionContext.getSessionScopedVar(String) | 
java.util.Map<java.lang.String,java.lang.Object> | 
getSessionStoreMap()
非推奨です。 
 
セッションストアは使用できません。代わりにセッションスコープを使用してください。
  
ExecutionContext.getSessionScopeMap() | 
ExecutionContext | 
setSessionStoredVar(java.lang.String varName,
                   java.lang.Object varValue)
非推奨です。 
 
セッションストアは使用できません。代わりにセッションスコープを使用してください。
  
ExecutionContext.setSessionScopedVar(String, Object) | 
ExecutionContext | 
setSessionStoreMap(java.util.Map<java.lang.String,java.lang.Object> map)
非推奨です。 
 
セッションストアは使用できません。代わりにセッションスコープを使用してください。
  
ExecutionContext.setSessionScopeMap(Map) | 
clearLastReadData, closeReader, findHandler, getApplicationException, getCurrentRequestObject, getDataProcessedWhenThrown, getDataReader, getException, getHandlerQueue, getLastReadData, getLastRecordNumber, getNextHandler, getRequestScopedVar, getRequestScopeMap, getSessionScopedVar, getSessionScopeMap, handleNext, hasNextData, hasSession, invalidateSession, isNewSession, isProcessSucceeded, putDataOnException, readNextData, selectHandlers, setCurrentRequestObject, setDataReader, setDataReaderFactory, setException, setLastRecordNumber, setProcessSucceeded, setRequestScopedVar, setRequestScopeMap, setSessionScopedVar, setSessionScopeMapaddHandler, addHandler, addHandler, addHandler, addHandler, addHandlers, clearHandlers, getHandlerOf, getMethodBinder, setHandlerQueue, setMethodBinder@Deprecated public java.util.Map<java.lang.String,java.lang.Object> getSessionStoreMap()
ExecutionContext.getSessionScopeMap()ExecutionContextgetSessionStoreMap クラス内 ExecutionContext@Deprecated public ExecutionContext setSessionStoreMap(java.util.Map<java.lang.String,java.lang.Object> map)
ExecutionContext.setSessionScopeMap(Map)ExecutionContextsetSessionStoreMap クラス内 ExecutionContextmap - セッションストア上の変数を格納したMap@Deprecated
public <T> T getSessionStoredVar(java.lang.String varName)
                                      throws java.lang.ClassCastException
ExecutionContext.getSessionScopedVar(String)ExecutionContextgetSessionStoredVar クラス内 ExecutionContextT - 期待する変数の型varName - 変数名java.lang.ClassCastException - 実際の変数の型が期待する変数の型と適合しなかった場合。@Deprecated public ExecutionContext setSessionStoredVar(java.lang.String varName, java.lang.Object varValue)
ExecutionContext.setSessionScopedVar(String, Object)ExecutionContextsetSessionStoredVar クラス内 ExecutionContextvarName - 変数名varValue - 変数の値