Author: veithen
Date: Sun Dec  9 18:22:15 2012
New Revision: 1419070

URL: http://svn.apache.org/viewvc?rev=1419070&view=rev
Log:
Renamed Flow to Chain to match the naming used in Axis core.

Added:
    
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/Chain.java
      - copied, changed from r1419001, 
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/Flow.java
    
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/impl/ChainImpl.java
      - copied, changed from r1419001, 
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/impl/FlowImpl.java
Removed:
    
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/Flow.java
    
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/impl/FlowImpl.java
Modified:
    axis/axis1/java/trunk/axis-model/model/wsdd.ecore
    
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/DeployableItem.java
    
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/WSDDFactory.java
    
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/impl/DeployableItemImpl.java
    
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/impl/WSDDFactoryImpl.java
    
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/impl/WSDDPackageImpl.java

Modified: axis/axis1/java/trunk/axis-model/model/wsdd.ecore
URL: 
http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-model/model/wsdd.ecore?rev=1419070&r1=1419069&r2=1419070&view=diff
==============================================================================
--- axis/axis1/java/trunk/axis-model/model/wsdd.ecore (original)
+++ axis/axis1/java/trunk/axis-model/model/wsdd.ecore Sun Dec  9 18:22:15 2012
@@ -111,7 +111,7 @@
     <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" 
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
     <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" 
eType="ecore:EDataType xml.ecore#//QName"/>
   </eClassifiers>
-  <eClassifiers xsi:type="ecore:EClass" name="Flow">
+  <eClassifiers xsi:type="ecore:EClass" name="Chain">
     <eStructuralFeatures xsi:type="ecore:EReference" name="handlers" 
upperBound="-1"
         eType="#//Handler" containment="true">
       <eAnnotations 
source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData";>
@@ -122,7 +122,7 @@
     </eStructuralFeatures>
   </eClassifiers>
   <eClassifiers xsi:type="ecore:EClass" name="DeployableItem" abstract="true" 
eSuperTypes="#//Parameterizable">
-    <eStructuralFeatures xsi:type="ecore:EReference" name="requestFlow" 
eType="#//Flow"
+    <eStructuralFeatures xsi:type="ecore:EReference" name="requestFlow" 
eType="#//Chain"
         containment="true">
       <eAnnotations 
source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData";>
         <details key="kind" value="element"/>
@@ -130,7 +130,7 @@
         <details key="namespace" value="##targetNamespace"/>
       </eAnnotations>
     </eStructuralFeatures>
-    <eStructuralFeatures xsi:type="ecore:EReference" name="responseFlow" 
eType="#//Flow"
+    <eStructuralFeatures xsi:type="ecore:EReference" name="responseFlow" 
eType="#//Chain"
         containment="true">
       <eAnnotations 
source="http:///org/eclipse/emf/ecore/util/ExtendedMetaData";>
         <details key="kind" value="element"/>

Copied: 
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/Chain.java
 (from r1419001, 
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/Flow.java)
URL: 
http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/Chain.java?p2=axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/Chain.java&p1=axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/Flow.java&r1=1419001&r2=1419070&rev=1419070&view=diff
==============================================================================
--- 
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/Flow.java
 (original)
+++ 
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/Chain.java
 Sun Dec  9 18:22:15 2012
@@ -17,14 +17,14 @@ import java.util.List;
  * <p>
  * The following features are supported:
  * <ul>
- *   <li>{@link org.apache.axis.model.wsdd.Flow#getHandlers 
<em>Handlers</em>}</li>
+ *   <li>{@link org.apache.axis.model.wsdd.Chain#getHandlers 
<em>Handlers</em>}</li>
  * </ul>
  * </p>
  *
  * @model
  * @generated
  */
-public interface Flow {
+public interface Chain {
 
     /**
      * Returns the value of the '<em><b>Handlers</b></em>' containment 
reference list.

Modified: 
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/DeployableItem.java
URL: 
http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/DeployableItem.java?rev=1419070&r1=1419069&r2=1419070&view=diff
==============================================================================
--- 
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/DeployableItem.java
 (original)
+++ 
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/DeployableItem.java
 Sun Dec  9 18:22:15 2012
@@ -32,12 +32,12 @@ public interface DeployableItem extends 
      * </p>
      * <!-- end-user-doc -->
      * @return the value of the '<em>Request Flow</em>' containment reference.
-     * @see #setRequestFlow(Flow)
+     * @see #setRequestFlow(Chain)
      * @model containment="true"
      *        extendedMetaData="kind='element' name='requestFlow' 
namespace='##targetNamespace'"
      * @generated
      */
-    Flow getRequestFlow();
+    Chain getRequestFlow();
 
     /**
      * Sets the value of the '{@link 
org.apache.axis.model.wsdd.DeployableItem#getRequestFlow <em>Request 
Flow</em>}' containment reference.
@@ -47,7 +47,7 @@ public interface DeployableItem extends 
      * @see #getRequestFlow()
      * @generated
      */
-    void setRequestFlow(Flow value);
+    void setRequestFlow(Chain value);
 
     /**
      * Returns the value of the '<em><b>Response Flow</b></em>' containment 
reference.
@@ -58,12 +58,12 @@ public interface DeployableItem extends 
      * </p>
      * <!-- end-user-doc -->
      * @return the value of the '<em>Response Flow</em>' containment reference.
-     * @see #setResponseFlow(Flow)
+     * @see #setResponseFlow(Chain)
      * @model containment="true"
      *        extendedMetaData="kind='element' name='responseFlow' 
namespace='##targetNamespace'"
      * @generated
      */
-    Flow getResponseFlow();
+    Chain getResponseFlow();
 
     /**
      * Sets the value of the '{@link 
org.apache.axis.model.wsdd.DeployableItem#getResponseFlow <em>Response 
Flow</em>}' containment reference.
@@ -73,6 +73,6 @@ public interface DeployableItem extends 
      * @see #getResponseFlow()
      * @generated
      */
-    void setResponseFlow(Flow value);
+    void setResponseFlow(Chain value);
 
 } // DeployableItem

Modified: 
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/WSDDFactory.java
URL: 
http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/WSDDFactory.java?rev=1419070&r1=1419069&r2=1419070&view=diff
==============================================================================
--- 
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/WSDDFactory.java
 (original)
+++ 
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/WSDDFactory.java
 Sun Dec  9 18:22:15 2012
@@ -31,15 +31,6 @@ public interface WSDDFactory {
     Parameter createParameter();
 
     /**
-     * Returns a new object of class '<em>Flow</em>'.
-     * <!-- begin-user-doc -->
-     * <!-- end-user-doc -->
-     * @return a new object of class '<em>Flow</em>'.
-     * @generated
-     */
-    Flow createFlow();
-
-    /**
      * Returns a new object of class '<em>Type Mapping</em>'.
      * <!-- begin-user-doc -->
      * <!-- end-user-doc -->
@@ -121,6 +112,15 @@ public interface WSDDFactory {
     Handler createHandler();
 
     /**
+     * Returns a new object of class '<em>Chain</em>'.
+     * <!-- begin-user-doc -->
+     * <!-- end-user-doc -->
+     * @return a new object of class '<em>Chain</em>'.
+     * @generated
+     */
+    Chain createChain();
+
+    /**
      * Returns a new object of class '<em>Global Configuration</em>'.
      * <!-- begin-user-doc -->
      * <!-- end-user-doc -->

Copied: 
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/impl/ChainImpl.java
 (from r1419001, 
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/impl/FlowImpl.java)
URL: 
http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/impl/ChainImpl.java?p2=axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/impl/ChainImpl.java&p1=axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/impl/FlowImpl.java&r1=1419001&r2=1419070&rev=1419070&view=diff
==============================================================================
--- 
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/impl/FlowImpl.java
 (original)
+++ 
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/impl/ChainImpl.java
 Sun Dec  9 18:22:15 2012
@@ -8,7 +8,7 @@ package org.apache.axis.model.wsdd.impl;
 
 import java.util.Collection;
 import java.util.List;
-import org.apache.axis.model.wsdd.Flow;
+import org.apache.axis.model.wsdd.Chain;
 
 import org.apache.axis.model.wsdd.Handler;
 import org.eclipse.emf.common.notify.NotificationChain;
@@ -27,13 +27,13 @@ import org.eclipse.emf.ecore.util.Intern
  * <p>
  * The following features are implemented:
  * <ul>
- *   <li>{@link org.apache.axis.model.wsdd.impl.FlowImpl#getHandlers 
<em>Handlers</em>}</li>
+ *   <li>{@link org.apache.axis.model.wsdd.impl.ChainImpl#getHandlers 
<em>Handlers</em>}</li>
  * </ul>
  * </p>
  *
  * @generated
  */
-public class FlowImpl extends EObjectImpl implements Flow {
+public class ChainImpl extends EObjectImpl implements Chain {
     /**
      * The cached value of the '{@link #getHandlers() <em>Handlers</em>}' 
containment reference list.
      * <!-- begin-user-doc -->
@@ -49,7 +49,7 @@ public class FlowImpl extends EObjectImp
      * <!-- end-user-doc -->
      * @generated
      */
-    protected FlowImpl() {
+    protected ChainImpl() {
         super();
     }
 
@@ -59,7 +59,7 @@ public class FlowImpl extends EObjectImp
      * @generated
      */
     protected EClass eStaticClass() {
-        return WSDDPackageImpl.Literals.FLOW;
+        return WSDDPackageImpl.Literals.CHAIN;
     }
 
     /**
@@ -81,7 +81,7 @@ public class FlowImpl extends EObjectImp
      */
     public NotificationChain eInverseRemove(InternalEObject otherEnd, int 
featureID, NotificationChain msgs) {
         switch (featureID) {
-            case WSDDPackageImpl.FLOW__HANDLERS:
+            case WSDDPackageImpl.CHAIN__HANDLERS:
                 return ((InternalEList)getHandlers()).basicRemove(otherEnd, 
msgs);
         }
         return super.eInverseRemove(otherEnd, featureID, msgs);
@@ -94,7 +94,7 @@ public class FlowImpl extends EObjectImp
      */
     public Object eGet(int featureID, boolean resolve, boolean coreType) {
         switch (featureID) {
-            case WSDDPackageImpl.FLOW__HANDLERS:
+            case WSDDPackageImpl.CHAIN__HANDLERS:
                 return getHandlers();
         }
         return super.eGet(featureID, resolve, coreType);
@@ -107,7 +107,7 @@ public class FlowImpl extends EObjectImp
      */
     public void eSet(int featureID, Object newValue) {
         switch (featureID) {
-            case WSDDPackageImpl.FLOW__HANDLERS:
+            case WSDDPackageImpl.CHAIN__HANDLERS:
                 getHandlers().clear();
                 getHandlers().addAll((Collection)newValue);
                 return;
@@ -122,7 +122,7 @@ public class FlowImpl extends EObjectImp
      */
     public void eUnset(int featureID) {
         switch (featureID) {
-            case WSDDPackageImpl.FLOW__HANDLERS:
+            case WSDDPackageImpl.CHAIN__HANDLERS:
                 getHandlers().clear();
                 return;
         }
@@ -136,7 +136,7 @@ public class FlowImpl extends EObjectImp
      */
     public boolean eIsSet(int featureID) {
         switch (featureID) {
-            case WSDDPackageImpl.FLOW__HANDLERS:
+            case WSDDPackageImpl.CHAIN__HANDLERS:
                 return handlers != null && !handlers.isEmpty();
         }
         return super.eIsSet(featureID);

Modified: 
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/impl/DeployableItemImpl.java
URL: 
http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/impl/DeployableItemImpl.java?rev=1419070&r1=1419069&r2=1419070&view=diff
==============================================================================
--- 
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/impl/DeployableItemImpl.java
 (original)
+++ 
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/impl/DeployableItemImpl.java
 Sun Dec  9 18:22:15 2012
@@ -8,7 +8,7 @@ package org.apache.axis.model.wsdd.impl;
 
 import org.apache.axis.model.wsdd.DeployableItem;
 
-import org.apache.axis.model.wsdd.Flow;
+import org.apache.axis.model.wsdd.Chain;
 import org.eclipse.emf.common.notify.NotificationChain;
 import org.eclipse.emf.ecore.EClass;
 
@@ -37,7 +37,7 @@ public abstract class DeployableItemImpl
      * @generated
      * @ordered
      */
-    protected Flow requestFlow;
+    protected Chain requestFlow;
     /**
      * The cached value of the '{@link #getResponseFlow() <em>Response 
Flow</em>}' containment reference.
      * <!-- begin-user-doc -->
@@ -46,7 +46,7 @@ public abstract class DeployableItemImpl
      * @generated
      * @ordered
      */
-    protected Flow responseFlow;
+    protected Chain responseFlow;
 
     /**
      * <!-- begin-user-doc -->
@@ -71,7 +71,7 @@ public abstract class DeployableItemImpl
      * <!-- end-user-doc -->
      * @generated
      */
-    public Flow getRequestFlow() {
+    public Chain getRequestFlow() {
         return requestFlow;
     }
 
@@ -80,8 +80,8 @@ public abstract class DeployableItemImpl
      * <!-- end-user-doc -->
      * @generated
      */
-    public NotificationChain basicSetRequestFlow(Flow newRequestFlow, 
NotificationChain msgs) {
-        Flow oldRequestFlow = requestFlow;
+    public NotificationChain basicSetRequestFlow(Chain newRequestFlow, 
NotificationChain msgs) {
+        Chain oldRequestFlow = requestFlow;
         requestFlow = newRequestFlow;
         return msgs;
     }
@@ -91,7 +91,7 @@ public abstract class DeployableItemImpl
      * <!-- end-user-doc -->
      * @generated
      */
-    public void setRequestFlow(Flow newRequestFlow) {
+    public void setRequestFlow(Chain newRequestFlow) {
         if (newRequestFlow != requestFlow) {
             NotificationChain msgs = null;
             if (requestFlow != null)
@@ -108,7 +108,7 @@ public abstract class DeployableItemImpl
      * <!-- end-user-doc -->
      * @generated
      */
-    public Flow getResponseFlow() {
+    public Chain getResponseFlow() {
         return responseFlow;
     }
 
@@ -117,8 +117,8 @@ public abstract class DeployableItemImpl
      * <!-- end-user-doc -->
      * @generated
      */
-    public NotificationChain basicSetResponseFlow(Flow newResponseFlow, 
NotificationChain msgs) {
-        Flow oldResponseFlow = responseFlow;
+    public NotificationChain basicSetResponseFlow(Chain newResponseFlow, 
NotificationChain msgs) {
+        Chain oldResponseFlow = responseFlow;
         responseFlow = newResponseFlow;
         return msgs;
     }
@@ -128,7 +128,7 @@ public abstract class DeployableItemImpl
      * <!-- end-user-doc -->
      * @generated
      */
-    public void setResponseFlow(Flow newResponseFlow) {
+    public void setResponseFlow(Chain newResponseFlow) {
         if (newResponseFlow != responseFlow) {
             NotificationChain msgs = null;
             if (responseFlow != null)
@@ -178,10 +178,10 @@ public abstract class DeployableItemImpl
     public void eSet(int featureID, Object newValue) {
         switch (featureID) {
             case WSDDPackageImpl.DEPLOYABLE_ITEM__REQUEST_FLOW:
-                setRequestFlow((Flow)newValue);
+                setRequestFlow((Chain)newValue);
                 return;
             case WSDDPackageImpl.DEPLOYABLE_ITEM__RESPONSE_FLOW:
-                setResponseFlow((Flow)newValue);
+                setResponseFlow((Chain)newValue);
                 return;
         }
         super.eSet(featureID, newValue);
@@ -195,10 +195,10 @@ public abstract class DeployableItemImpl
     public void eUnset(int featureID) {
         switch (featureID) {
             case WSDDPackageImpl.DEPLOYABLE_ITEM__REQUEST_FLOW:
-                setRequestFlow((Flow)null);
+                setRequestFlow((Chain)null);
                 return;
             case WSDDPackageImpl.DEPLOYABLE_ITEM__RESPONSE_FLOW:
-                setResponseFlow((Flow)null);
+                setResponseFlow((Chain)null);
                 return;
         }
         super.eUnset(featureID);

Modified: 
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/impl/WSDDFactoryImpl.java
URL: 
http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/impl/WSDDFactoryImpl.java?rev=1419070&r1=1419069&r2=1419070&view=diff
==============================================================================
--- 
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/impl/WSDDFactoryImpl.java
 (original)
+++ 
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/impl/WSDDFactoryImpl.java
 Sun Dec  9 18:22:15 2012
@@ -78,7 +78,7 @@ public class WSDDFactoryImpl extends EFa
             case WSDDPackageImpl.OPERATION: return (EObject)createOperation();
             case WSDDPackageImpl.PARAMETERIZABLE: return 
(EObject)createParameterizable();
             case WSDDPackageImpl.HANDLER: return (EObject)createHandler();
-            case WSDDPackageImpl.FLOW: return (EObject)createFlow();
+            case WSDDPackageImpl.CHAIN: return (EObject)createChain();
             case WSDDPackageImpl.GLOBAL_CONFIGURATION: return 
(EObject)createGlobalConfiguration();
             case WSDDPackageImpl.TRANSPORT: return (EObject)createTransport();
             case WSDDPackageImpl.SERVICE: return (EObject)createService();
@@ -131,16 +131,6 @@ public class WSDDFactoryImpl extends EFa
      * <!-- end-user-doc -->
      * @generated
      */
-    public Flow createFlow() {
-        FlowImpl flow = new FlowImpl();
-        return flow;
-    }
-
-    /**
-     * <!-- begin-user-doc -->
-     * <!-- end-user-doc -->
-     * @generated
-     */
     public TypeMapping createTypeMapping() {
         TypeMappingImpl typeMapping = new TypeMappingImpl();
         return typeMapping;
@@ -231,6 +221,16 @@ public class WSDDFactoryImpl extends EFa
      * <!-- end-user-doc -->
      * @generated
      */
+    public Chain createChain() {
+        ChainImpl chain = new ChainImpl();
+        return chain;
+    }
+
+    /**
+     * <!-- begin-user-doc -->
+     * <!-- end-user-doc -->
+     * @generated
+     */
     public GlobalConfiguration createGlobalConfiguration() {
         GlobalConfigurationImpl globalConfiguration = new 
GlobalConfigurationImpl();
         return globalConfiguration;

Modified: 
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/impl/WSDDPackageImpl.java
URL: 
http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/impl/WSDDPackageImpl.java?rev=1419070&r1=1419069&r2=1419070&view=diff
==============================================================================
--- 
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/impl/WSDDPackageImpl.java
 (original)
+++ 
axis/axis1/java/trunk/axis-model/src/main/java/org/apache/axis/model/wsdd/impl/WSDDPackageImpl.java
 Sun Dec  9 18:22:15 2012
@@ -12,7 +12,7 @@ import org.apache.axis.model.wsdd.BeanMa
 import org.apache.axis.model.wsdd.DeployableItem;
 import org.apache.axis.model.wsdd.Deployment;
 import org.apache.axis.model.wsdd.Fault;
-import org.apache.axis.model.wsdd.Flow;
+import org.apache.axis.model.wsdd.Chain;
 import org.apache.axis.model.wsdd.GlobalConfiguration;
 import org.apache.axis.model.wsdd.Handler;
 import org.apache.axis.model.wsdd.Mapping;
@@ -117,16 +117,6 @@ public class WSDDPackageImpl extends EPa
     public static final int PARAMETER_FEATURE_COUNT = 2;
 
     /**
-     * The meta object id for the '{@link 
org.apache.axis.model.wsdd.impl.FlowImpl <em>Flow</em>}' class.
-     * <!-- begin-user-doc -->
-     * <!-- end-user-doc -->
-     * @see org.apache.axis.model.wsdd.impl.FlowImpl
-     * @see org.apache.axis.model.wsdd.impl.WSDDPackageImpl#getFlow()
-     * @generated
-     */
-    public static final int FLOW = 11;
-
-    /**
      * The meta object id for the '{@link 
org.apache.axis.model.wsdd.impl.MappingImpl <em>Mapping</em>}' class.
      * <!-- begin-user-doc -->
      * <!-- end-user-doc -->
@@ -713,22 +703,32 @@ public class WSDDPackageImpl extends EPa
     public static final int HANDLER_FEATURE_COUNT = 
PARAMETERIZABLE_FEATURE_COUNT + 2;
 
     /**
+     * The meta object id for the '{@link 
org.apache.axis.model.wsdd.impl.ChainImpl <em>Chain</em>}' class.
+     * <!-- begin-user-doc -->
+     * <!-- end-user-doc -->
+     * @see org.apache.axis.model.wsdd.impl.ChainImpl
+     * @see org.apache.axis.model.wsdd.impl.WSDDPackageImpl#getChain()
+     * @generated
+     */
+    public static final int CHAIN = 11;
+
+    /**
      * The feature id for the '<em><b>Handlers</b></em>' containment reference 
list.
      * <!-- begin-user-doc -->
      * <!-- end-user-doc -->
      * @generated
      * @ordered
      */
-    public static final int FLOW__HANDLERS = 0;
+    public static final int CHAIN__HANDLERS = 0;
 
     /**
-     * The number of structural features of the '<em>Flow</em>' class.
+     * The number of structural features of the '<em>Chain</em>' class.
      * <!-- begin-user-doc -->
      * <!-- end-user-doc -->
      * @generated
      * @ordered
      */
-    public static final int FLOW_FEATURE_COUNT = 1;
+    public static final int CHAIN_FEATURE_COUNT = 1;
 
     /**
      * The meta object id for the '{@link 
org.apache.axis.model.wsdd.impl.DeployableItemImpl <em>Deployable Item</em>}' 
class.
@@ -1126,13 +1126,6 @@ public class WSDDPackageImpl extends EPa
      * <!-- end-user-doc -->
      * @generated
      */
-    private EClass flowEClass = null;
-
-    /**
-     * <!-- begin-user-doc -->
-     * <!-- end-user-doc -->
-     * @generated
-     */
     private EClass mappingEClass = null;
 
     /**
@@ -1203,6 +1196,13 @@ public class WSDDPackageImpl extends EPa
      * <!-- end-user-doc -->
      * @generated
      */
+    private EClass chainEClass = null;
+
+    /**
+     * <!-- begin-user-doc -->
+     * <!-- end-user-doc -->
+     * @generated
+     */
     private EClass deployableItemEClass = null;
 
     /**
@@ -1348,31 +1348,6 @@ public class WSDDPackageImpl extends EPa
     }
 
     /**
-     * Returns the meta object for class '{@link 
org.apache.axis.model.wsdd.Flow <em>Flow</em>}'.
-     * <!-- begin-user-doc -->
-     * <!-- end-user-doc -->
-     * @return the meta object for class '<em>Flow</em>'.
-     * @see org.apache.axis.model.wsdd.Flow
-     * @generated
-     */
-    public EClass getFlow() {
-        return flowEClass;
-    }
-
-    /**
-     * Returns the meta object for the containment reference list '{@link 
org.apache.axis.model.wsdd.Flow#getHandlers <em>Handlers</em>}'.
-     * <!-- begin-user-doc -->
-     * <!-- end-user-doc -->
-     * @return the meta object for the containment reference list 
'<em>Handlers</em>'.
-     * @see org.apache.axis.model.wsdd.Flow#getHandlers()
-     * @see #getFlow()
-     * @generated
-     */
-    public EReference getFlow_Handlers() {
-        return (EReference)flowEClass.getEStructuralFeatures().get(0);
-    }
-
-    /**
      * Returns the meta object for class '{@link 
org.apache.axis.model.wsdd.Mapping <em>Mapping</em>}'.
      * <!-- begin-user-doc -->
      * <!-- end-user-doc -->
@@ -1935,6 +1910,31 @@ public class WSDDPackageImpl extends EPa
     }
 
     /**
+     * Returns the meta object for class '{@link 
org.apache.axis.model.wsdd.Chain <em>Chain</em>}'.
+     * <!-- begin-user-doc -->
+     * <!-- end-user-doc -->
+     * @return the meta object for class '<em>Chain</em>'.
+     * @see org.apache.axis.model.wsdd.Chain
+     * @generated
+     */
+    public EClass getChain() {
+        return chainEClass;
+    }
+
+    /**
+     * Returns the meta object for the containment reference list '{@link 
org.apache.axis.model.wsdd.Chain#getHandlers <em>Handlers</em>}'.
+     * <!-- begin-user-doc -->
+     * <!-- end-user-doc -->
+     * @return the meta object for the containment reference list 
'<em>Handlers</em>'.
+     * @see org.apache.axis.model.wsdd.Chain#getHandlers()
+     * @see #getChain()
+     * @generated
+     */
+    public EReference getChain_Handlers() {
+        return (EReference)chainEClass.getEStructuralFeatures().get(0);
+    }
+
+    /**
      * Returns the meta object for class '{@link 
org.apache.axis.model.wsdd.DeployableItem <em>Deployable Item</em>}'.
      * <!-- begin-user-doc -->
      * <!-- end-user-doc -->
@@ -2289,8 +2289,8 @@ public class WSDDPackageImpl extends EPa
         createEAttribute(handlerEClass, HANDLER__NAME);
         createEAttribute(handlerEClass, HANDLER__TYPE);
 
-        flowEClass = createEClass(FLOW);
-        createEReference(flowEClass, FLOW__HANDLERS);
+        chainEClass = createEClass(CHAIN);
+        createEReference(chainEClass, CHAIN__HANDLERS);
 
         deployableItemEClass = createEClass(DEPLOYABLE_ITEM);
         createEReference(deployableItemEClass, DEPLOYABLE_ITEM__REQUEST_FLOW);
@@ -2423,12 +2423,12 @@ public class WSDDPackageImpl extends EPa
         initEAttribute(getHandler_Name(), ecorePackage.getEString(), "name", 
null, 0, 1, Handler.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, 
!IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED);
         initEAttribute(getHandler_Type(), theXmlPackage.getQName(), "type", 
null, 0, 1, Handler.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, 
!IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED);
 
-        initEClass(flowEClass, Flow.class, "Flow", !IS_ABSTRACT, 
!IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS);
-        initEReference(getFlow_Handlers(), this.getHandler(), null, 
"handlers", null, 0, -1, Flow.class, !IS_TRANSIENT, !IS_VOLATILE, 
IS_CHANGEABLE, IS_COMPOSITE, !IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, 
!IS_DERIVED, IS_ORDERED);
+        initEClass(chainEClass, Chain.class, "Chain", !IS_ABSTRACT, 
!IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS);
+        initEReference(getChain_Handlers(), this.getHandler(), null, 
"handlers", null, 0, -1, Chain.class, !IS_TRANSIENT, !IS_VOLATILE, 
IS_CHANGEABLE, IS_COMPOSITE, !IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, 
!IS_DERIVED, IS_ORDERED);
 
         initEClass(deployableItemEClass, DeployableItem.class, 
"DeployableItem", IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS);
-        initEReference(getDeployableItem_RequestFlow(), this.getFlow(), null, 
"requestFlow", null, 0, 1, DeployableItem.class, !IS_TRANSIENT, !IS_VOLATILE, 
IS_CHANGEABLE, IS_COMPOSITE, !IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, 
!IS_DERIVED, IS_ORDERED);
-        initEReference(getDeployableItem_ResponseFlow(), this.getFlow(), null, 
"responseFlow", null, 0, 1, DeployableItem.class, !IS_TRANSIENT, !IS_VOLATILE, 
IS_CHANGEABLE, IS_COMPOSITE, !IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, 
!IS_DERIVED, IS_ORDERED);
+        initEReference(getDeployableItem_RequestFlow(), this.getChain(), null, 
"requestFlow", null, 0, 1, DeployableItem.class, !IS_TRANSIENT, !IS_VOLATILE, 
IS_CHANGEABLE, IS_COMPOSITE, !IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, 
!IS_DERIVED, IS_ORDERED);
+        initEReference(getDeployableItem_ResponseFlow(), this.getChain(), 
null, "responseFlow", null, 0, 1, DeployableItem.class, !IS_TRANSIENT, 
!IS_VOLATILE, IS_CHANGEABLE, IS_COMPOSITE, !IS_RESOLVE_PROXIES, !IS_UNSETTABLE, 
IS_UNIQUE, !IS_DERIVED, IS_ORDERED);
 
         initEClass(globalConfigurationEClass, GlobalConfiguration.class, 
"GlobalConfiguration", !IS_ABSTRACT, !IS_INTERFACE, 
IS_GENERATED_INSTANCE_CLASS);
 
@@ -2525,7 +2525,7 @@ public class WSDDPackageImpl extends EPa
              "namespace", "##targetNamespace"
            });         
         addAnnotation
-          (getFlow_Handlers(), 
+          (getChain_Handlers(), 
            source, 
            new String[] {
              "name", "handler",
@@ -2645,24 +2645,6 @@ public class WSDDPackageImpl extends EPa
         public static final EAttribute PARAMETER__VALUE = 
eINSTANCE.getParameter_Value();
 
         /**
-         * The meta object literal for the '{@link 
org.apache.axis.model.wsdd.impl.FlowImpl <em>Flow</em>}' class.
-         * <!-- begin-user-doc -->
-         * <!-- end-user-doc -->
-         * @see org.apache.axis.model.wsdd.impl.FlowImpl
-         * @see org.apache.axis.model.wsdd.impl.WSDDPackageImpl#getFlow()
-         * @generated
-         */
-        public static final EClass FLOW = eINSTANCE.getFlow();
-
-        /**
-         * The meta object literal for the '<em><b>Handlers</b></em>' 
containment reference list feature.
-         * <!-- begin-user-doc -->
-         * <!-- end-user-doc -->
-         * @generated
-         */
-        public static final EReference FLOW__HANDLERS = 
eINSTANCE.getFlow_Handlers();
-
-        /**
          * The meta object literal for the '{@link 
org.apache.axis.model.wsdd.impl.MappingImpl <em>Mapping</em>}' class.
          * <!-- begin-user-doc -->
          * <!-- end-user-doc -->
@@ -3035,6 +3017,24 @@ public class WSDDPackageImpl extends EPa
         public static final EAttribute HANDLER__TYPE = 
eINSTANCE.getHandler_Type();
 
         /**
+         * The meta object literal for the '{@link 
org.apache.axis.model.wsdd.impl.ChainImpl <em>Chain</em>}' class.
+         * <!-- begin-user-doc -->
+         * <!-- end-user-doc -->
+         * @see org.apache.axis.model.wsdd.impl.ChainImpl
+         * @see org.apache.axis.model.wsdd.impl.WSDDPackageImpl#getChain()
+         * @generated
+         */
+        public static final EClass CHAIN = eINSTANCE.getChain();
+
+        /**
+         * The meta object literal for the '<em><b>Handlers</b></em>' 
containment reference list feature.
+         * <!-- begin-user-doc -->
+         * <!-- end-user-doc -->
+         * @generated
+         */
+        public static final EReference CHAIN__HANDLERS = 
eINSTANCE.getChain_Handlers();
+
+        /**
          * The meta object literal for the '{@link 
org.apache.axis.model.wsdd.impl.DeployableItemImpl <em>Deployable Item</em>}' 
class.
          * <!-- begin-user-doc -->
          * <!-- end-user-doc -->


Reply via email to