blob: ffdf8cb898e33002865662aa44eb332109c4c831 [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.bpel.dao;
import org.apache.ode.bpel.evt.BpelEvent;
import java.util.Collection;
import java.util.List;
/**
* Data access objec representing a BPEL scope instance.
* Objects of this class manage a collection of correlation
* sets and XML data variables.
*/
public interface ScopeDAO {
/**
* Get the unique identifier for this scope instance.
* @return scope instance id
*/
Long getScopeInstanceId();
/**
* Get the scope model id from the object
* @return scope model id
*/
int getModelId();
/**
* Get scope name (from the definition / or auto-generated).
* NOTE: the scope names are not necessarily unique.
* @return scope name
*/
String getName();
/**
* Get a correlation set by name.
* @param corrSetName correlation set name
* @return correlation set instance
*/
CorrelationSetDAO getCorrelationSet(String corrSetName);
/**
* Gets all correlation sets for this scope
* @return correlation set instances
*/
Collection<CorrelationSetDAO> getCorrelationSets();
/**
* Get the parent scope.
* @return parent scope
*/
ScopeDAO getParentScope();
Collection<ScopeDAO> getChildScopes();
/**
* Get the process instance to which this scope belongs.
* @return owner {@link ProcessInstanceDAO}
*/
ProcessInstanceDAO getProcessInstance();
/**
* Set current state of the scope.
* @param state new scope state
*/
void setState(ScopeStateEnum state);
/**
* Get current state of the scope.
* @return current scope state
*/
ScopeStateEnum getState();
/**
* Get a variable by name.
* @param varName variable name
* @return {@link XmlDataDAO} object representing the requested variable
*/
XmlDataDAO getVariable(String varName);
/**
* Get a colleciton of all the variables belonging to this scope.
* @return collection of variables
*/
Collection<XmlDataDAO> getVariables();
/**
* Get an ordered list of events associated with this scope.
* @return collection of bpel events.
*/
List<BpelEvent> listEvents();
/**
* Create a storage space for partner link values for the scope.
* @param plinkModelId partner link model id
* @param pLinkName partner link name
* @return {@link PartnerLinkDAO} object representing the created endpoint reference
*/
PartnerLinkDAO createPartnerLink(int plinkModelId, String pLinkName, String myRole, String partnerRole);
/**
* Get the parnter link storage object associated with this scope instance
* and the provided partner link model id.
* @param plinkModelId partner link model id
* @return {@link PartnerLinkDAO} object representing the requested endpoint reference
*/
PartnerLinkDAO getPartnerLink(int plinkModelId);
/**
* Get all partner link storage object associated with this scope instance.
* @return List of {@link PartnerLinkDAO} objects
*/
Collection<PartnerLinkDAO> getPartnerLinks();
}