partnerlinkdaoimpl.java
来自「bpel执行引擎用来执行bpel业务流程」· Java 代码 · 共 147 行
JAVA
147 行
/* * 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;import javax.xml.namespace.QName;import org.apache.ode.bpel.dao.PartnerLinkDAO;import org.apache.ode.daohib.SessionManager;import org.apache.ode.daohib.bpel.hobj.HLargeData;import org.apache.ode.daohib.bpel.hobj.HPartnerLink;import org.apache.ode.utils.DOMUtils;import org.w3c.dom.Element;/** * Hibernate based {EndpointReferenceDAO} implementation. can either be related * 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). */public class PartnerLinkDAOImpl extends HibernateDao implements PartnerLinkDAO { /** Cached copy of my epr */ private Element _myEPR; /** Cached copy of partner epr. */ private Element _partnerEPR; HPartnerLink _self; public PartnerLinkDAOImpl(SessionManager sessionManager, HPartnerLink hobj) { super(sessionManager, hobj); _self = hobj; } public String getPartnerLinkName() { return _self.getLinkName(); } public String getPartnerRoleName() { return _self.getPartnerRole(); } public String getMyRoleName() { return _self.getMyRole(); } public int getPartnerLinkModelId() { return _self.getModelId(); } public QName getMyRoleServiceName() { return _self.getServiceName() == null ? null : QName.valueOf(_self.getServiceName()); } public void setMyRoleServiceName(QName svcName) { _self.setServiceName(svcName == null ? null : svcName.toString()); update(); } public Element getMyEPR() { if (_myEPR != null) return _myEPR; if (_self.getMyEPR() == null) return null; try { return DOMUtils.stringToDOM(_self.getMyEPR().getText()); } catch (Exception e) { throw new RuntimeException(e); } } public void setMyEPR(Element val) { _myEPR = val; if (_self.getMyEPR() != null) _sm.getSession().delete(_self.getMyEPR()); if (val == null) { _self.setMyEPR(null); } else { HLargeData ld = new HLargeData(DOMUtils.domToString(val)); getSession().save(ld); _self.setMyEPR(ld); } getSession().update(_self); } public Element getPartnerEPR() { if (_partnerEPR != null) return _partnerEPR; if (_self.getPartnerEPR() == null) return null; try { return _partnerEPR = DOMUtils.stringToDOM(_self.getPartnerEPR().getText()); } catch (Exception e) { throw new RuntimeException(e); } } public void setPartnerEPR(Element val) { _partnerEPR = val; if (_self.getPartnerEPR() != null) _sm.getSession().delete(_self.getPartnerEPR()); if (val == null) { _self.setPartnerEPR(null); } else { HLargeData ld = new HLargeData(DOMUtils.domToString(val)); getSession().save(ld); _self.setPartnerEPR(ld); } getSession().update(_self); } public String getMySessionId() { return _self.getMySessionId(); } public String getPartnerSessionId() { return _self.getPartnerSessionId(); } public void setPartnerSessionId(String session) { _self.setPartnerSessionId(session); } public void setMySessionId(String sessionId) { _self.setMySessionId(sessionId); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?