hprocessinstance.java

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

JAVA
269
字号
/* * 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.Collection;import java.util.Date;import java.util.HashSet;import java.util.Set;/** * Hibernate table representing a BPEL process instance. *  * @hibernate.class table="BPEL_INSTANCE" dynamic-update="true" lazy="true" */public class HProcessInstance extends HObject {    /** Foreign key to owner {@link HProcess}. */    private HProcess _process;    /** Foreign key to the instantiating {@link HCorrelator}. */    private HCorrelator _instantiatingCorrelator;    /** Scope instances belonging to this process instnace. */    private Collection<HScope> _scopes = new HashSet<HScope>();    private Collection<HCorrelationSet> _csets = new HashSet<HCorrelationSet>();    /** Events belonging to this instance. */    private Collection<HBpelEvent> _events = new HashSet<HBpelEvent>();    private Set<HCorrelatorSelector> _correlatorSelectors = new HashSet<HCorrelatorSelector>();    private Set<HMessageExchange> _messageExchanges = new HashSet<HMessageExchange>();    private HFaultData _fault;    private HLargeData _jacobState;    private short _previousState;    private short _state;    private Date _lastActiveTime;    private Date _activityFailureDateTime;    private int _activityFailureCount;    private Collection<HActivityRecovery> _activityRecoveries = new HashSet<HActivityRecovery>();    private long _seq;    /**     *     */    public HProcessInstance() {        super();    }    /**     * @hibernate.many-to-one column="INSTANTIATING_CORRELATOR"     */    public HCorrelator getInstantiatingCorrelator() {        return _instantiatingCorrelator;    }    public void setInstantiatingCorrelator(HCorrelator instantiatingCorrelator) {        _instantiatingCorrelator = instantiatingCorrelator;    }    /**     * @hibernate.many-to-one column="FAULT" cascade="delete" column="FAULT"     */    public HFaultData getFault() {        return _fault;    }    public void setFault(HFaultData fault) {        _fault = fault;    }    /**     * @hibernate.many-to-one column="JACOB_STATE" cascade="delete"     */    public HLargeData getJacobState() {        return _jacobState;    }    public void setJacobState(HLargeData jacobState) {        _jacobState = jacobState;    }    /**     * @hibernate.bag lazy="true" inverse="true" cascade="delete"     * @hibernate.collection-key column="IID"     * @hibernate.collection-one-to-many class="org.apache.ode.daohib.bpel.hobj.HBpelEvent"     */    public Collection<HBpelEvent> getEvents() {        return _events;    }    public void setEvents(Collection<HBpelEvent> events) {        _events = events;    }    /**     * @hibernate.set lazy="true" inverse="true" cascade="delete"     * @hibernate.collection-key column="PIID"     * @hibernate.collection-one-to-many class="org.apache.ode.daohib.bpel.hobj.HCorrelatorSelector"     */    public Set<HCorrelatorSelector> getCorrelatorSelectors() {        return _correlatorSelectors;    }    /**     * @param selectors     *            the _correlatorSelectors to set     */    public void setCorrelatorSelectors(Set<HCorrelatorSelector> selectors) {        _correlatorSelectors = selectors;    }    /**     * @hibernate.set lazy="true" inverse="true" cascade="delete"     * @hibernate.collection-key column="PIID"     * @hibernate.collection-one-to-many class="org.apache.ode.daohib.bpel.hobj.HMessageExchange"     */    public Set<HMessageExchange> getMessageExchanges() {        return _messageExchanges;    }    public void setMessageExchanges(Set<HMessageExchange> exchanges) {        _messageExchanges = exchanges;    }    /**     * @hibernate.property column="PREVIOUS_STATE"     */    public short getPreviousState() {        return _previousState;    }    public void setPreviousState(short previousState) {        _previousState = previousState;    }    /**     * @hibernate.many-to-one column="PROCESS_ID"     */    public HProcess getProcess() {        return _process;    }    public void setProcess(HProcess process) {        _process = process;    }    /**     * @hibernate.bag lazy="true" inverse="true" cascade="delete"     * @hibernate.collection-key column="PIID"     * @hibernate.collection-one-to-many class="org.apache.ode.daohib.bpel.hobj.HScope"     */    public Collection<HScope> getScopes() {        return _scopes;    }    public void setScopes(Collection<HScope> scopes) {        _scopes = scopes;    }    /**     * @hibernate.bag lazy="true" inverse="true" cascade="delete"     * @hibernate.collection-key column="PIID"     * @hibernate.collection-one-to-many class="org.apache.ode.daohib.bpel.hobj.HCorrelationSet"     */    public Collection<HCorrelationSet> getCorrelationSets() {        return _csets;    }    public void setCorrelationSets(Collection<HCorrelationSet> csets) {        _csets = csets;    }    /**     * @hibernate.property column="STATE"     */    public short getState() {        return _state;    }    public void setState(short state) {        _state = state;    }    /**     * @hibernate.property column="LAST_ACTIVE_DT"     */    public Date getLastActiveTime() {        return _lastActiveTime;    }    public void setLastActiveTime(Date lastActiveTime) {        _lastActiveTime = lastActiveTime;    }    public void setSequence(long seq) {        _seq = seq;    }    /**     * @hibernate.property column="SEQUENCE"     */    public long getSequence() {        return _seq;    }    /**     * @hibernate.bag lazy="true" inverse="true" cascade="delete"     * @hibernate.collection-key column="PIID"     * @hibernate.collection-one-to-many class="org.apache.ode.daohib.bpel.hobj.HActivityRecovery"     */    public Collection<HActivityRecovery> getActivityRecoveries() {        return _activityRecoveries;    }    public void setActivityRecoveries(Collection<HActivityRecovery> activityRecoveries) {        _activityRecoveries = activityRecoveries;    }    /**     * @hibernate.property column="FAILURE_COUNT"     */    public int getActivityFailureCount() {        return _activityFailureCount;    }    public void setActivityFailureCount(int count) {        _activityFailureCount = count;    }    /**     * @hibernate.property column="FAILURE_DT"     */    public Date getActivityFailureDateTime() {        return _activityFailureDateTime;    }    public void setActivityFailureDateTime(Date dateTime) {        _activityFailureDateTime = dateTime;    }}

⌨️ 快捷键说明

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