📄 processmgr.java
字号:
/* * $Id: ProcessMgr.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.GenericValue;import org.ofbiz.entity.GenericDelegator;import org.ofbiz.entity.GenericEntityException;import org.ofbiz.base.util.UtilMisc;import org.ofbiz.base.util.Debug;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 ProcessMgr extends InstanceEntityObject implements ProcessMgrPersistenceInterface { public static final String module = ProcessMgr.class.getName(); protected GenericValue processMgr = null; protected boolean newValue = false; protected ProcessMgr(EntityPersistentMgr mgr, GenericDelegator delegator, String name) throws PersistenceException { super(mgr, delegator); if (this.delegator != null) { try { this.processMgr = delegator.findByPrimaryKey("WfProcessMgr", UtilMisc.toMap("mgrName", name)); } catch (GenericEntityException e) { throw new PersistenceException(e); } } else { Debug.logError("Invalid delegator object passed", module); } } protected ProcessMgr(EntityPersistentMgr mgr, GenericValue processMgr) { super(mgr, processMgr.getDelegator()); this.processMgr = processMgr; } public ProcessMgr(EntityPersistentMgr mgr, GenericDelegator delegator) { super(mgr, delegator); this.newValue = true; this.processMgr = delegator.makeValue("WfProcessMgr", UtilMisc.toMap("currentState", new Long(0))); } public static ProcessMgr getInstance(EntityPersistentMgr pmgr, GenericValue processMgr) { ProcessMgr mgr = new ProcessMgr(pmgr, processMgr); if (mgr.isLoaded()) { return mgr; } return null; } public static ProcessMgr getInstance(EntityPersistentMgr pmgr, String name) throws PersistenceException { ProcessMgr mgr = new ProcessMgr(pmgr, SharkContainer.getDelegator(), name); if (mgr.isLoaded()) { return mgr; } return null; } public boolean isLoaded() { if (processMgr == null) { return false; } return true; } public void setName(String name) { processMgr.set("mgrName", name); } public String getName() { return processMgr.getString("mgrName"); } public void setPackageId(String pkgId) { processMgr.set("packageId", pkgId); } public String getPackageId() { return processMgr.getString("packageId"); } public void setProcessDefinitionId(String pdId) { processMgr.set("definitionId", pdId); } public String getProcessDefinitionId() { return processMgr.getString("definitionId"); } public void setState(int state) { processMgr.set("currentState", new Long(state)); } public int getState() { return processMgr.getLong("currentState").intValue(); } public String getVersion() { return processMgr.getString("packageVer"); } public void setVersion(String version) { processMgr.set("packageVer", version); } public String getCreated() { return processMgr.getString("created"); } public void setCreated(String created) { processMgr.set("created", created); } public void store() throws GenericEntityException { if (newValue) { delegator.createOrStore(processMgr); newValue = false; } else { delegator.store(processMgr); } } public void reload() throws GenericEntityException { if (!newValue) { processMgr.refresh(); } } public void remove() throws GenericEntityException { if (!newValue) { delegator.removeValue(processMgr); Debug.log("**** REMOVED : " + this, module); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -