Class FlowResponse

java.lang.Object
com.infoteria.asteria.flowengine2.interfaces.FlowResponse
All Implemented Interfaces:
Serializable

public class FlowResponse extends Object implements Serializable
クライアントから実行したフローの結果をラップしたクラスです。
See Also:
  • Method Details

    • isSucceed

      public boolean isSucceed()
      実行したフローが正常終了したか、異常終了したかを示します。
    • getStream

      public StreamDataObject getStream()
      実行したフローの結果ストリームを取得します。
      結果ストリームがない場合はnullになります。
    • getReturnValue

      public String getReturnValue()
      実行したフローのReturnValueを取得します。
    • getSessionId

      public String getSessionId()
      実行のセッションIDを取得します。
    • getException

      public Exception getException()
      フローの実行が異常終了した場合に発生したExceptionを取得します。
    • convertResultStreamToDefaultStrategy

      public void convertResultStreamToDefaultStrategy(boolean cleanOld, boolean hasBreakableContext) throws StreamException
      Throws:
      StreamException