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

📄 entityapplicationmap.java

📁 Sequoia ERP是一个真正的企业级开源ERP解决方案。它提供的模块包括:电子商务应用(e-commerce), POS系统(point of sales),知识管理,存货与仓库管理
💻 JAVA
字号:
/* * $Id: EntityApplicationMap.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.mapping;import org.ofbiz.entity.GenericEntityException;import org.ofbiz.entity.GenericDelegator;import org.ofbiz.entity.GenericValue;import org.ofbiz.base.util.UtilMisc;import org.ofbiz.shark.container.SharkContainer;import org.enhydra.shark.api.internal.appmappersistence.ApplicationMap;import org.enhydra.shark.api.RootException;/** * Shark Application Map Implementation * * @author     <a href="mailto:jaz@ofbiz.org">Andy Zeneski</a> * @version    $Rev: 5462 $ * @since      3.1 */public class EntityApplicationMap implements ApplicationMap {    protected GenericDelegator delegator = null;    protected GenericValue application = null;    protected boolean isNew = false;        protected EntityApplicationMap(GenericDelegator delegator, String packageId, String processDefId, String applicationDefId) throws RootException {        this.delegator = delegator;        try {            this.application = delegator.findByPrimaryKey("WfApplicationMap", UtilMisc.toMap("packageId", packageId, "processDefId", processDefId, "applicationDefId", applicationDefId));        } catch (GenericEntityException e) {            throw new RootException(e);        }    }    protected EntityApplicationMap(GenericValue application) {        this.application = application;        this.delegator = application.getDelegator();    }    public EntityApplicationMap(GenericDelegator delegator) {        this.isNew = true;        this.delegator = delegator;        this.application = delegator.makeValue("SharkApplicationMap", null);    }    public static EntityApplicationMap getInstance(GenericValue application) {        EntityApplicationMap app = new EntityApplicationMap(application);        if (app.isLoaded()) {            return app;        }        return null;    }    public static EntityApplicationMap getInstance(String packageId, String processDefId, String applicationDefId) throws RootException {        EntityApplicationMap act = new EntityApplicationMap(SharkContainer.getDelegator(), packageId, processDefId, applicationDefId);        if (act.isLoaded()) {            return act;        }        return null;    }    public boolean isLoaded() {        if (application == null) {            return false;        }        return true;    }    public void setApplicationDefinitionId(String applicationDefId) {        application.set("applicationDefId", applicationDefId);    }    public String getApplicationDefinitionId() {        return application.getString("applicationDefId");    }    public void setPackageId(String packageId) {        application.set("packageId", packageId);    }    public String getPackageId() {        return application.getString("applicationName");    }    public void setProcessDefinitionId(String processDefId) {        application.set("processDefId", processDefId);    }    public String getProcessDefinitionId() {        return application.getString("processDefId");    }    public void setToolAgentClassName(String toolAgentName) {        application.set("toolAgentName", toolAgentName);    }    public String getToolAgentClassName() {        return application.getString("toolAgentName");    }    public void setUsername(String userName) {        application.set("userName", userName);    }    public String getUsername() {        return application.getString("userName");    }    public void setPassword(String password) {        application.set("password", password);    }    public String getPassword() {        return application.getString("password");    }    public void setApplicationName(String name) {        application.set("applicationName", name);    }    public String getApplicationName() {        return application.getString("applicationName");    }    public void setApplicationMode(Integer mode) {        application.set("applicationMode", mode);    }    public Integer getApplicationMode() {        return application.getInteger("applicationMode");    }    public boolean equalsByKeys(ApplicationMap applicationMap) {        if (applicationMap == null ) return false;        if ((applicationMap.getPackageId() != null && this.getPackageId() != null))            if (!(applicationMap.getPackageId().equals(this.getPackageId())))                return false;        if ((applicationMap.getProcessDefinitionId() != null && this.getProcessDefinitionId() != null))            if( !(applicationMap.getProcessDefinitionId().equals(this.getProcessDefinitionId())))                return false;        if ((applicationMap.getApplicationDefinitionId() != null && this.getApplicationDefinitionId() != null))            if (!(applicationMap.getApplicationDefinitionId().equals(this.getApplicationDefinitionId())))                return false;        if ((applicationMap.getToolAgentClassName() != null && this.getToolAgentClassName() != null))            if (!(applicationMap.getToolAgentClassName().equals(this.getToolAgentClassName())))                return false;        return true;            }    public void store() throws RootException {        if (isNew) {            try {                delegator.create(application);            } catch (GenericEntityException e) {                throw new RootException(e);            }        } else {            try {                delegator.store(application);            } catch (GenericEntityException e) {                throw new RootException(e);            }        }    }    public void reload() throws RootException {        if (!isNew) {            try {                delegator.refresh(application);            } catch (GenericEntityException e) {                throw new RootException(e);            }        }    }    public void remove() throws RootException {        if (!isNew) {            try {                delegator.removeValue(application);            } catch (GenericEntityException e) {                throw new RootException(e);            }        }    }}

⌨️ 快捷键说明

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