工作流程學習筆記(二)

來源:互聯網
上載者:User
<initial-actions>
   <action id="0" name="開始">
      <pre-functions>
     <function type="class">
       <arg name="class.name">com.opensymphony.workflow.util.Caller</arg>
        </function>
        <function type="beanshell">
           <arg name="script">
             propertySet.setString("type", transientVars.get("type"));
           </arg>
        </function>
      </pre-functions>
      <results>
        <unconditional-result old-status="Finished" status="Queued"
step="1" owner="${caller}" />
      </results>
      <post-functions>
            <function type="class">
              <arg name="class.name">
                  tw.idv.idealist.OutputPropertySet
              </arg>
              <arg name="author">Steven Shi</arg>
            </function>
      </post-functions>
    </action>
  </initial-actions>
Property sets:持久性變數會將變數的值存入OS_PROPERTYENTRY表中,在程式中以propertySet來存取
ransient Map:臨時變數,僅僅在workflow中有效,在程式中以transientVars來存取。
外部類:
OutputPropertySet.java

package tw.idv.idealist;

import java.util.Map;

import com.opensymphony.module.propertyset.PropertySet;
import com.opensymphony.workflow.FunctionProvider;
import com.opensymphony.workflow.WorkflowException;

/**
* @author steven
*/
public class OutputPropertySet implements FunctionProvider {
public void execute(Map transientVars, Map args, PropertySet ps)
throws WorkflowException {
if (ps.getString("type").equals("1")) {
System.out.println("事假");
}
else if (ps.getString("type").equals("2")) {
System.out.println("病假");
}
System.out.println("author => " + args.get("author"));
}
}
外部類要實現 FunctionProvider。外部類在程式中如下形勢 被調用
<function type="class">
<arg name="class.name">
tw.idv.idealist.OutputPropertySet
</arg>
<arg name="author">Steven Shi</arg>
</function> 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.