/** * <copyright> * Copyright (c) 2005 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation * </copyright> * * $Id: CorrelationSet.java,v 1.5 2011/03/30 18:54:25 rbrodt Exp $ */ package org.eclipse.bpel.model; import org.eclipse.bpel.model.messageproperties.Property; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Correlation Set</b></em>'. * <!-- end-user-doc --> * * <!-- begin-model-doc --> * A named group of properties that, taken together, serve to define a way of identifying an application-level conversation within a business protocol instance. * * A given message can cary multiple correlation sets. After initialization, the values of the properties for a correlation set in a business process instance must be identical for all the messages in all the operations that carry the correlation set. * <!-- end-model-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.bpel.model.CorrelationSet#getName <em>Name</em>}</li> * <li>{@link org.eclipse.bpel.model.CorrelationSet#getProperties <em>Properties</em>}</li> * </ul> * </p> * * @see org.eclipse.bpel.model.BPELPackage#getCorrelationSet() * @model * @generated */ public interface CorrelationSet extends BPELExtensibleElement { /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Name</em>' attribute. * @see #setName(String) * @see org.eclipse.bpel.model.BPELPackage#getCorrelationSet_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.bpel.model.CorrelationSet#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() */ void setName(String value); /** * Returns the value of the '<em><b>Properties</b></em>' reference list. * The list contents are of type {@link org.eclipse.bpel.model.messageproperties.Property}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Properties</em>' reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Properties</em>' reference list. * @see org.eclipse.bpel.model.BPELPackage#getCorrelationSet_Properties() * @model * @generated */ EList<Property> getProperties(); } // CorrelationSet