📄 activity3.java
字号:
package org.artemis.workflow.command;
import java.util.Map;
import org.apache.log4j.Logger;
import com.gsta.eshore.framework.jcf.Command;
/**
* Class:Activity1 Creation Date: Mar 7, 2005 CVS ID $Id:$
*
* Class Descriptoin goes here
*
* @author sdodge
* @since $Date:$
*/
public class Activity3 extends Command {
private static Logger logger=Logger.getLogger(Activity3.class);
public void fini() throws Exception {
// TODO Auto-generated method stub
}
public void execute(Map params, Map response) throws Exception {
logger.info("++++++ ACTIVITY3 Printing cumulative data for the workflow process ++++++++ ");
logger.info("++++++ ACTIVITY3 Finished ++++++++ ");
response.put("next", "activity2");
}
public void init(String parameter) throws Exception {
// TODO Auto-generated method stub
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -