⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 activity1.java

📁 Java开发的权限管理的例子
💻 JAVA
字号:

package org.artemis.workflow.command;

import java.util.Map;
import org.apache.log4j.Logger;
import com.gsta.eshore.framework.jcf.Command;

/**
 * @author hewenqiang Jul 19, 2006 2:51:19 PM
 */
public class Activity1 extends Command {

	private static Logger logger=Logger.getLogger(Activity1.class);

	public void fini() throws Exception {
		// TODO Auto-generated method stub
		
	}

	public void init(String parameter) throws Exception {
		// TODO Auto-generated method stub
		
	}

	public void execute(Map params, Map response) throws Exception {
    	logger.info("EXECUTE Activity1");
        System.out.println("ct.getValue(\"aa\") === ");
        response.put("next", "activity3");
      //  throw new GoOnException("Activity1","JCFException");
       
	
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -