= !BeanFlowInvoker実装クラス jp.ossc.nimbus.service.beancontrol.!BeanFlowInvokerAccessImpl [http://nimbus.sourceforge.jp/reports/apidocs/jp/ossc/nimbus/service/beancontrol/BeanFlowInvokerAccessImpl.html jp.ossc.nimbus.service.beancontrol.BeanFlowInvokerAccessImpl]は、[http://nimbus.sourceforge.jp/reports/apidocs/jp/ossc/nimbus/service/beancontrol/interfaces/BeanFlowInvoker.html BeanFlowInvoker]デフォルト実装クラスです。[[BR]] バッチ由来のJCL(Job Control Language)ライクな実装で、処理ステップ毎にステートフルな業務ロジックBeanに設定やデータを引き渡し、処理を実行しその結果を次の処理ステップに引き渡す単純なウォーターフロー処理実装です。[[BR]] [http://nimbus.sourceforge.jp/reports/apidocs/jp/ossc/nimbus/service/beancontrol/BeanFlowInvokerAccessImpl2.html jp.ossc.nimbus.service.beancontrol.BeanFlowInvokerAccessImpl2]が開発されたため、現在では非推奨です。また、非同期呼び出し系の機能は、実装していません。[[BR]] XMLで記述した業務フローを読み込み、アプリケーションに提供します。[[BR]] 以下に簡単な業務フロー定義を示します。 {{{ code xml <?xml version="1.0" encoding="Shift_JIS"?> <flows> <!-- 業務フローを宣言する --> <flow name="sample"> <!-- 使用するリソースを宣言する --> <resource name="Connection" service="Nimbus#JDBCResourceFactory" key=""/> <!-- 処理ステップ1 --> <!-- className属性 ステップ処理対象のクラス名 --> <!-- type属性 ステップ処理対象クラスのインスタンスの入手方法:生成 --> <!-- methodName属性 ステップ処理対象クラスのインスタンスに対する処理実行メソッド名 --> <!-- getterName属性 ステップ処理対象クラスのインスタンスに対する処理結果取得メソッド名:thisは、ステップ処理対象クラスのインスタンス自体を示す予約語 --> <step name="step1" className="sample.SampleBean" type="new" methodName="search" getterName="this"> <!-- リソースをsetterでインジェクションする --> <attribute name="Connection" type="resource" value="Connection"/> <!-- 業務フローへの入力引数をsetterでインジェクションする --> <attribute name="Condition" type="input"/> </step> <!-- 処理ステップ2 --> <!-- className属性 ステップ処理対象のクラス名 --> <!-- type属性 ステップ処理対象クラスのインスタンスの入手方法:過去ステップstep1の結果を参照 --> <!-- methodName属性 ステップ処理対象クラスのインスタンスに対する処理実行メソッド名 --> <!-- getterName属性 ステップ処理対象クラスのインスタンスに対する処理結果取得メソッド名 --> <step name="step2" className="sample.SampleBean" type="step.step1" methodName="calculate" getterName="getResult"> </step> </flow> </flows> }}} ---- [wiki:Function/service/beancontrol#header_BeanFlowInvoker 業務フロー/BeanFlowInvoker]