hpartnerlink.java

来自「bpel执行引擎用来执行bpel业务流程」· Java 代码 · 共 203 行

JAVA
203
字号
/* * 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.daohib.bpel.hobj;import java.util.Set;/** * The HEndpointReference can either be attached to a scope (when it's specific * to a scope instance, for example because it has been assigned during the * instance execution) or to a process definition (general endpoint * configuration). *  * @hibernate.class table="BPEL_PLINK_VAL" */public class HPartnerLink extends HObject {    private String _linkName;    private String _partnerRole;    private String _myrole;    private String _svcName;    private HLargeData _myEPR;    private HLargeData _partnerEPR;    private HScope _scope;    private HProcess _process;    private int _modelId;    private String _mySessionId;    private String _partnerSessionId;    private Set<HMessageExchange> _mex;    public HPartnerLink() {        super();    }    /**     * @hibernate.property column="PARTNER_LINK" length="100" not-null="true"     */    public String getLinkName() {        return _linkName;    }    public void setLinkName(String linkName) {        _linkName = linkName;    }    /**     * @hibernate.property column="PARTNERROLE" length="100"     */    public String getPartnerRole() {        return _partnerRole;    }    public void setPartnerRole(String partnerRoleName) {        _partnerRole = partnerRoleName;    }    /**     * @hibernate.many-to-one column="MYROLE_EPR" cascade="delete"     */    public HLargeData getMyEPR() {        return _myEPR;    }    public void setMyEPR(HLargeData data) {        _myEPR = data;    }    /**     * @hibernate.many-to-one column="PARTNERROLE_EPR" cascade="delete"     */    public HLargeData getPartnerEPR() {        return _partnerEPR;    }    public void setPartnerEPR(HLargeData data) {        _partnerEPR = data;    }    /**     * @hibernate.many-to-one column="PROCESS"     */    public HProcess getProcess() {        return _process;    }    public void setProcess(HProcess process) {        _process = process;    }    /**     * @hibernate.many-to-one column="SCOPE"     */    public HScope getScope() {        return _scope;    }    public void setScope(HScope scope) {        _scope = scope;    }    public void setServiceName(String svcName) {        _svcName = svcName;    }    /**     * @hibernate.property column="SVCNAME"     */    public String getServiceName() {        return _svcName;    }    /**     * @hibernate.property column="MYROLE" length="100"     * @return     */    public String getMyRole() {        return _myrole;    }    public void setMyRole(String myrole) {        _myrole = myrole;    }    /**     * @hibernate.property column="MODELID"     */    public int getModelId() {        return _modelId;    }    public void setModelId(int modelId) {        _modelId = modelId;    }    /**     * @hibernate.property column="MYSESSIONID"     */    public String getMySessionId() {        return _mySessionId;    }    /**     * @hibernate.property column="PARTNERSESSIONID"     */    public String getPartnerSessionId() {        return _partnerSessionId;    }    public void setPartnerSessionId(String session) {        _partnerSessionId = session;    }    public void setMySessionId(String sessionId) {        _mySessionId = sessionId;    }    /**     * @hibernate.set     *    lazy="true"     *    inverse="true"     *    cascade="delete"     * @hibernate.collection-key     *    column="PARTNERLINK"     * @hibernate.collection-one-to-many     *    class="org.apache.ode.daohib.bpel.hobj.HMessageExchange"     */    public Set<HMessageExchange> getMessageExchanges() {      return _mex;    }    public void setMessageExchanges(Set<HMessageExchange> mex) {      _mex = mex;    }}

⌨️ 快捷键说明

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