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

📄 activity.java

📁 Sequoia ERP是一个真正的企业级开源ERP解决方案。它提供的模块包括:电子商务应用(e-commerce), POS系统(point of sales),知识管理,存货与仓库管理
💻 JAVA
字号:
/* * $Id: Activity.java 5462 2005-08-05 18:35:48Z jonesde $ * * Copyright (c) 2004 The Open For Business Project - www.ofbiz.org * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT * OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * THE USE OR OTHER DEALINGS IN THE SOFTWARE. * */package org.ofbiz.shark.instance;import org.ofbiz.entity.GenericDelegator;import org.ofbiz.entity.GenericValue;import org.ofbiz.entity.GenericEntityException;import org.ofbiz.base.util.UtilMisc;import org.ofbiz.base.util.Debug;import org.ofbiz.base.util.UtilDateTime;import org.ofbiz.shark.container.SharkContainer;import org.enhydra.shark.api.internal.instancepersistence.*;/** * Persistance Object * * @author     <a href="mailto:jaz@ofbiz.org">Andy Zeneski</a> * @version    $Rev: 5462 $ * @since      3.1 */public class Activity extends InstanceEntityObject implements ActivityPersistenceInterface {    public static final String module = Activity.class.getName();    protected GenericValue activity = null;    protected boolean newValue = false;    protected Activity(EntityPersistentMgr mgr, GenericDelegator delegator, String activityId) throws PersistenceException {        super(mgr, delegator);        this.delegator = delegator;        if (this.delegator != null) {            try {                this.activity = delegator.findByPrimaryKey("WfActivity", UtilMisc.toMap("activityId", activityId));            } catch (GenericEntityException e) {                throw new PersistenceException(e);            }        } else {            Debug.logError("Invalid delegator object passed", module);        }    }    protected Activity(EntityPersistentMgr mgr, GenericValue activity) {        super(mgr, activity.getDelegator());        this.activity = activity;    }    public Activity(EntityPersistentMgr mgr, GenericDelegator delegator) {        super(mgr, delegator);        this.newValue = true;        this.activity = delegator.makeValue("WfActivity", null);    }    public static Activity getInstance(EntityPersistentMgr mgr, GenericValue activity) {        Activity act = new Activity(mgr, activity);        if (act.isLoaded()) {            return act;        }        return null;    }    public static Activity getInstance(EntityPersistentMgr mgr, String activityId) throws PersistenceException {        Activity act = new Activity(mgr, SharkContainer.getDelegator(), activityId);        if (act.isLoaded()) {            return act;        }        return null;    }    public boolean isLoaded() {        if (activity == null) {            return false;        }        return true;    }    public void setId(String s) {        activity.set("activityId", s);    }    public String getId() {        return activity.getString("activityId");    }    public void setActivitySetDefinitionId(String asdId) {        activity.set("setDefinitionId", asdId);    }    public String getActivitySetDefinitionId() {        return activity.getString("setDefinitionId");    }    public void setActivityDefinitionId(String s) {        activity.set("definitionId", s);    }    public String getActivityDefinitionId() {       return activity.getString("definitionId");    }    public void setProcessId(String s) {        activity.set("processId", s);    }    public String getProcessId() {        return activity.getString("processId");    }    public void setSubflowProcessId(String s) {        activity.set("subFlowId", s);    }    public String getSubflowProcessId() {        return activity.getString("subFlowId");    }    public void setSubflowAsynchronous(boolean b) {        activity.set("isSubAsync", (b ? "Y" : "N"));    }    public boolean isSubflowAsynchronous() {        String isAsync = activity.getString("isSubAsync");        return isAsync != null && isAsync.equals("Y") ? true : false;            }    public void setResourceUsername(String s) {        activity.set("resourceUser", s);    }    public String getResourceUsername() {        return activity.getString("resourceUser");    }    public void setState(String s) {        activity.set("currentState", s);    }    public String getState() {        return activity.getString("currentState");    }    public void setBlockActivityId(String s) {        activity.set("blockId", s);    }    public String getBlockActivityId() {        return activity.getString("blockId");    }    public String getName() {        return activity.getString("activityName");    }    public void setName(String s) {        activity.set("activityName", s);    }    public String getDescription() {        return activity.getString("description");    }    public void setDescription(String s) {        activity.set("description", s);    }    public int getPriority() {        return activity.getLong("priority").intValue();    }    public void setPriority(int i) {        activity.set("priority", new Long(i));    }    public long getLastStateTime() {        return activity.get("lastStateTime") != null ? activity.getTimestamp("lastStateTime").getTime() : 0;    }    public void setLastStateTime(long timestamp) {        activity.set("lastStateTime", UtilDateTime.getTimestamp(timestamp));    }    public long getAcceptedTime() {        return activity.get("acceptedTime") != null ? activity.getTimestamp("acceptedTime").getTime() : 0;    }    public void setAcceptedTime(long timestamp) {        activity.set("acceptedTime", UtilDateTime.getTimestamp(timestamp));    }    public long getActivatedTime() {        return activity.get("activatedTime") != null ? activity.getTimestamp("activatedTime").getTime() : 0;    }    public void setActivatedTime(long timestamp) {        activity.set("activatedTime", UtilDateTime.getTimestamp(timestamp));    }    public void store() throws GenericEntityException {        if (newValue) {            delegator.createOrStore(activity);            newValue = false;        } else {            delegator.store(activity);        }    }    public void reload() throws GenericEntityException {        if (!newValue) {            activity.refresh();        }    }    public void remove() throws GenericEntityException {        if (!newValue) {            delegator.removeValue(activity);            Debug.log("**** REMOVED : " + this, module);        }    }}

⌨️ 快捷键说明

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