com.infoteria.asteria.flowengine2.soap
Class FlowResponse

java.lang.Object
  |
  +--com.infoteria.asteria.flowengine2.soap.FlowResponse
All Implemented Interfaces:
Serializable

public class FlowResponse
extends Object
implements Serializable

クライアントから実行したフローの結果をラップしたクラスです。

See Also:
Serialized Form

Method Summary
 Exception getException()
          フローの実行が異常終了した場合に発生したExceptionを取得します。
 String getReturnValue()
          実行したフローのReturnValueを取得します。
 String getSessionId()
          実行のセッションIDを取得します。
 StreamDataObject getStream()
          実行したフローの結果ストリームを取得します。
結果ストリームがない場合はnullになります。
 boolean isSucceed()
          実行したフローが正常終了したか、異常終了したかを示します。
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

isSucceed

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

getStream

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

getReturnValue

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

getSessionId

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

getException

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