blob: 1c0dba9b2e36d02e96a886e89a61a68c1eae4f7c [file] [log] [blame]
/*
* 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.HashSet;
import java.util.Collection;
/**
* Hibernate table representing correlation set values.
* @hibernate.class table="BPEL_CORRELATION_SET"
* @hibernate.query name="SELECT_CORSET_IDS_BY_INSTANCES" query="select id from HCorrelationSet as c where c.instance in (:instances)"
* @hibernate.query name="SELECT_CORSETS_BY_INSTANCES" query="from HCorrelationSet as c left join fetch c.properties where c.instance.id in (:instances)"
* @hibernate.query name="SELECT_CORSETS_BY_PROCESS_STATES" query="from HCorrelationSet as c left join fetch c.process left join fetch c.instance where c.instance.state in (:states)"
*/
public class HCorrelationSet extends HObject{
public static final String SELECT_CORSET_IDS_BY_INSTANCES = "SELECT_CORSET_IDS_BY_INSTANCES";
public static final String SELECT_CORSETS_BY_INSTANCES = "SELECT_CORSETS_BY_INSTANCES";
public static final String SELECT_CORSETS_BY_PROCESS_STATES = "SELECT_CORSETS_BY_PROCESS_STATES";
private HProcess _process;
private HProcessInstance _instance;
private Collection<HCorrelationProperty> _properties = new HashSet<HCorrelationProperty>();
private HScope _scope;
private String _name;
private String _value;
public HCorrelationSet() {
super();
}
public HCorrelationSet(HScope scope, String name) {
super();
_scope = scope;
_instance = scope.getInstance();
_process = _instance.getProcess();
_name = name;
}
/**
* @hibernate.property
* column="VALUE"
*/
public String getValue() {
return _value;
}
public void setName(String name) {
_name = name;
}
public void setScope(HScope scope) {
_scope = scope;
}
public void setValue(String value) {
_value = value;
}
/**
* @hibernate.property
* column="CORR_SET_NAME"
* length="255"
*/
public String getName() {
return _name;
}
/**
* @hibernate.many-to-one
* column="SCOPE_ID" foreign-key="none"
*/
public HScope getScope() {
return _scope;
}
/**
* @hibernate.many-to-one
* column="PIID" foreign-key="none"
*/
public HProcessInstance getInstance() {
return _instance;
}
public void setInstance(HProcessInstance instance) {
_instance = instance;
}
/**
* @hibernate.many-to-one
* column="PROCESS_ID" foreign-key="none"
*/
public HProcess getProcess() {
return _process;
}
public void setProcess(HProcess process) {
_process = process;
}
/**
* @hibernate.set
* lazy="true"
* inverse="true"
* cascade="delete"
* @hibernate.collection-key
* column="CORR_SET_ID" foreign-key="none"
* @hibernate.collection-one-to-many
* class="org.apache.ode.daohib.bpel.hobj.HCorrelationProperty"
*/
public Collection<HCorrelationProperty> getProperties() {
return _properties;
}
public void setProperties(Collection<HCorrelationProperty> properties) {
_properties = properties;
}
}