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

📄 processconfdaoimpl.java

📁 bpel执行引擎用来执行bpel业务流程
💻 JAVA
字号:
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements.  See the NOTICE file * distributed with this work for additional information * regarding copyright ownership.  The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License.  You may obtain a copy of the License at * *    http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied.  See the License for the * specific language governing permissions and limitations * under the License. */package org.apache.ode.store.hib;import org.apache.ode.bpel.iapi.ProcessState;import org.apache.ode.store.ProcessConfDAO;import org.apache.ode.utils.stl.CollectionsX;import org.apache.ode.utils.stl.UnaryFunction;import javax.xml.namespace.QName;import java.util.ArrayList;import java.util.Collection;import java.util.HashMap;import java.util.Map;/** * @author mriou <mriou at apache dot org> * @hibernate.class table="STORE_PROCESS" */public class ProcessConfDaoImpl extends HibObj implements ProcessConfDAO {    private DeploymentUnitDaoImpl _du;        private Map<String,String> _properties = new HashMap<String,String>();    /** Simple name of the process. */    private String _processId;    /** Process type. */    private String _type;        /** Process version. */    private long _version;    /** Process state.*/    private String _state;    /**     * @hibernate.many-to-one      * @hibernate.column name="DU"     */    public DeploymentUnitDaoImpl getDeploymentUnit() {        return _du;    }        public void setDeploymentUnit(DeploymentUnitDaoImpl du) {        _du = du;    }    /**     * @hibernate.map table="STORE_PROCESS_PROP" role="properties_"     * @hibernate.collection-key column="propId"      * @hibernate.collection-index column="name" type="string"      * @hibernate.collection-element column="value" type="string"     */    public Map<String,String> getProperties_() {        return _properties;    }    public void setProperties_(Map<String,String> properties) {        _properties = properties;    }    /**     *     * @hibernate.id generator-class="assigned"     * @hibernate.column     *  name="PID"     *  not-null="true"     */    public String getPID_() {        return _processId;    }    public void setPID_(String processId) {        _processId = processId;    }    /**     * The type of the process (BPEL process definition name).     * @hibernate.property     *     column="TYPE"     */    public String getType_() {        return _type;    }    public void setType_(String type) {        _type = type;    }    /**     * The process version.     * @hibernate.property     *    column="version"     */    public long getVersion() {        return _version;    }    public void setVersion(long version) {        _version = version;    }    /**     * The process state.     * @hibernate.property     *    column="STATE"     */    public String getState_() {        return _state;    }    public void setState_(String state) {        _state = state;    }    public QName getPID() {        return QName.valueOf(getPID_());    }    public void setPID(QName pid) {        setPID_(pid.toString());    }        public void setState(ProcessState state) {        setState_(state.toString());    }    public void setProperty(QName name, String content) {        _properties.put(name.toString(),content);    }    public void delete() {        super.delete();    }    public QName getType() {        return QName.valueOf(getType_());    }    public void setType(QName type) {        setType_(type.toString());    }    public ProcessState getState() {        return ProcessState.valueOf(getState_());    }       public String getProperty(QName name) {        return _properties.get(name.toString());    }    public Collection<QName> getPropertyNames() {        return CollectionsX.transform(new ArrayList<QName>(), _properties.keySet(),new UnaryFunction<String,QName>() {            public QName apply(String x) {                return QName.valueOf(x);            }                    });    }}

⌨️ 快捷键说明

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