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

📄 ejbworkflowcontext.java

📁 一个很好实用的工作流OSWORKFLOW开发例子.有着非常优秀的灵活性.
💻 JAVA
字号:
/* * Copyright (c) 2002-2003 by OpenSymphony * All rights reserved. */package com.opensymphony.workflow.ejb;import com.opensymphony.workflow.WorkflowContext;import javax.ejb.SessionContext;/** * EJB specific workflow context. * The default implementation is to get the caller principal from the * container's SessionContext. If different behaviour is desired, this * class can be subclassed with whatever custom logic in place to look * up the caller. This can be done by specifying a <code>workflowContext</code> * property in the ejb persistence store's properties in osworkflow.xml. * The value of this properly should be the classname of the WorkflowContext * to use. * * @author Hani Suleiman * @version $Revision: 1.6 $ */public class EJBWorkflowContext implements WorkflowContext {    //~ Instance fields ////////////////////////////////////////////////////////    private SessionContext sessionContext;    //~ Methods ////////////////////////////////////////////////////////////////    public String getCaller() {        return sessionContext.getCallerPrincipal().getName();    }    public void setRollbackOnly() {        sessionContext.setRollbackOnly();    }    public void setSessionContext(SessionContext context) {        this.sessionContext = context;    }    public SessionContext getSessionContext() {        return sessionContext;    }}

⌨️ 快捷键说明

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