summaryrefslogtreecommitdiff
path: root/cesar/cp2/cco/action
diff options
context:
space:
mode:
authorboure2008-04-29 14:15:08 +0000
committerboure2008-04-29 14:15:08 +0000
commit69f09b741865780091c7b5d2d0e4b3ac7d9c0c07 (patch)
tree91467829be1c21627dab6c36aacdfe8723915c33 /cesar/cp2/cco/action
parent565f1eb28cfb14289e99ca3bf560910866352e10 (diff)
Add Bandwidth Manager .xmi
Update Bandwidth Manager .odt && .h Update CCo action .odt && .h && .xmi git-svn-id: svn+ssh://pessac/svn/cesar/trunk@1930 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'cesar/cp2/cco/action')
-rw-r--r--cesar/cp2/cco/action/doc/cco_conn/cco_action.h139
-rwxr-xr-xcesar/cp2/cco/action/doc/cco_conn/doc/CCo Con.odtbin363024 -> 385299 bytes
-rw-r--r--cesar/cp2/cco/action/doc/cco_conn/doc/cco_conn.xmi293
-rw-r--r--cesar/cp2/cco/action/doc/cco_conn/doc/class_diag_cco_conn.pngbin77651 -> 0 bytes
-rw-r--r--cesar/cp2/cco/action/doc/cco_conn/inc/cco_action.h45
5 files changed, 351 insertions, 126 deletions
diff --git a/cesar/cp2/cco/action/doc/cco_conn/cco_action.h b/cesar/cp2/cco/action/doc/cco_conn/cco_action.h
new file mode 100644
index 0000000000..841bb8cfbe
--- /dev/null
+++ b/cesar/cp2/cco/action/doc/cco_conn/cco_action.h
@@ -0,0 +1,139 @@
+#ifndef cp_cco_action_h
+#define cp_cco_action_h
+/* Cesar project {{{
+ *
+ * Copyright (C) 2008 Spidcom
+ *
+ * <<<Licence>>>
+ *
+ * }}} */
+/**
+ * \file cp_cco_action.h
+ * \brief « brief description »
+ * \ingroup « module »
+ *
+ * « long description »
+ */
+
+/**
+ * - Functions reacting to incoming MME related to global connection.
+ * - Treatment of those MME - Storage and validation of the global connections
+ * - Control of the Bandwidth Manager's actions - React to the connections'
+ * states to send IND or CNF MME
+ */
+struct cp_cco_action_t
+{
+
+};
+typedef struct cp_cco_action_t cp_cco_action_t;
+
+/**
+ * Process a CC_LINK_NEW.
+ * \param ctx the module context.
+ * \param ctx Control Plane Context
+ * \param mme Incoming mme
+ *
+ * REQ Check the validity of the connection. Add the connection into
+ * the list of connections and the pending allocation list Call the bandwidth
+ * manager to redo the schedule Call cp_cco_action_mme_conn_cnf()
+ */
+void
+cp_cco_action_process_cc_link_new_req (cp_cco_action_t *ctx, cp_t* ctx, cp_mme_rx_t* mme);
+
+/**
+ * Process a CC_LINK_REL.
+ * \param ctx the module context.
+ * \param ctx Control Plane Context
+ * \param mme Incoming mme
+ *
+ * REQ Release the connection from the connections list and the pending
+ * allocation list Send the MME that will release the connection Call
+ * the bandwidth manager to redo the schedule
+ */
+void
+cp_cco_action_process_cc_link_rel_req (cp_cco_action_t *ctx, cp_t* ctx, cp_mme_rx_t* mme);
+
+/**
+ * Send a CC_LINK_SQZ.
+ * \param ctx the module context.
+ * \param ctx Control Plane Context
+ * \param mme Incoming mme
+ *
+ * REQ Relay the squeezing demand of the Bandwidth Manager to the STAs
+ * targeted
+ */
+void
+cp_cco_action_process_cc_link_sqz_req_tx (cp_cco_action_t *ctx, cp_t* ctx, cp_mme_tx_t* mme);
+
+/**
+ * Process a CC_LINK_SQZ.
+ * \param ctx the module context.
+ * \param ctx null
+ * \param mme null
+ *
+ * REQ Check the validity of the request Modify the connection's data
+ * Call the schedule function Check if the connection is still allocated
+ * Send the CNF with the result
+ */
+void
+cp_cco_action_process_cc_link_sqz_req_rx (cp_cco_action_t *ctx, cp_t* ctx, cp_mme_rx_t* mme);
+
+/**
+ * Process a CC_LINK_MOD.
+ * \param ctx the module context.
+ * \param ctx null
+ * \param mme Incoming mme
+ *
+ * REQ Check the validity of the modifications Modify the connection's
+ * data Call the schedule function Check if the connection is still in
+ * the schedule Send the MME CNF with the result
+ */
+void
+cp_cco_action_process_cc_link_mod_req (cp_cco_action_t *ctx, cp_t* ctx, cp_mme_rx_t* mme);
+
+/**
+ * Process a CC_ALLOC_MOVE.
+ * \param ctx the module context.
+ * \param ctx null
+ * \param mme null
+ *
+ * REQ Check the validity of the connection. Memorise the position of
+ * the allocation Call the function that can allocate a unique connection.
+ * If it has allocated it somewhere else we delete the old allocation
+ * if not we keep the old allocation Send the MME CNF with the result
+ * Add the connection into the list of connections and the pending allocation
+ * list Call the bandwidth manager to redo the schedule Call cp_cco_action_mme_conn_cnf()
+ */
+void
+cp_cco_action_process_cc_alloc_move_req (cp_cco_action_t *ctx, cp_t* ctx, cp_mme_rx_t* mme);
+
+/**
+ * Init function of the CCo.
+ * \param ctx the module context.
+ * \param ctx Control Plane Context
+ *
+ */
+void
+cp_cco_action_init (cp_cco_action_t *ctx, cp_t* ctx);
+
+/**
+ * Uninit the cco action module (call the uninit function of lower ctx).
+ * \param ctx the module context.
+ *
+ */
+void
+cp_cco_action_uninit (cp_cco_action_t *ctx);
+
+/**
+ * Process of a CC_BLE_UPDATE.
+ * \param ctx the module context.
+ * \param ctx control plane context
+ * \param mme Incoming MME
+ *
+ * IND. Actualisation of the BLE of a specific GLID. Call the Bandwidth
+ * Manager to redo the schedule
+ */
+void
+cp_cco_action_process_cc_ble_update_ind (cp_cco_action_t *ctx, cp_t* ctx, cp_mme_rx_t* mme);
+
+#endif /* cp_cco_action_h */
diff --git a/cesar/cp2/cco/action/doc/cco_conn/doc/CCo Con.odt b/cesar/cp2/cco/action/doc/cco_conn/doc/CCo Con.odt
index 12736384e4..2eca51bf38 100755
--- a/cesar/cp2/cco/action/doc/cco_conn/doc/CCo Con.odt
+++ b/cesar/cp2/cco/action/doc/cco_conn/doc/CCo Con.odt
Binary files differ
diff --git a/cesar/cp2/cco/action/doc/cco_conn/doc/cco_conn.xmi b/cesar/cp2/cco/action/doc/cco_conn/doc/cco_conn.xmi
index da623a7835..03b3cce335 100644
--- a/cesar/cp2/cco/action/doc/cco_conn/doc/cco_conn.xmi
+++ b/cesar/cp2/cco/action/doc/cco_conn/doc/cco_conn.xmi
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-<XMI xmlns:UML="http://schema.omg.org/spec/UML/1.3" verified="false" timestamp="2008-04-28T18:02:45" xmi.version="1.2" >
+<XMI xmlns:UML="http://schema.omg.org/spec/UML/1.3" verified="false" timestamp="2008-04-29T11:21:01" xmi.version="1.2" >
<XMI.header>
<XMI.documentation>
<XMI.exporter>umbrello uml modeller http://uml.sf.net</XMI.exporter>
@@ -56,26 +56,26 @@
</UML:Package>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="Z3fT7dhQPy4n" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="X6lDjP7AIUA2" aggregation="none" type="ySeTGJOMEmYM" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="MY8bWhcjf4hK" aggregation="none" type="xnGQ9ti6LKXZ" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="yZ0Tt6uHhpsU" aggregation="none" type="ySeTGJOMEmYM" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="kW28qo7GArZU" aggregation="none" type="xnGQ9ti6LKXZ" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="HtfvGG8l8Yj7" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="xZCca2c78MKp" aggregation="none" type="ySeTGJOMEmYM" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="lP01r83BgClD" aggregation="none" type="xnGQ9ti6LKXZ" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="i2h1mq9kQ8CH" aggregation="none" type="ySeTGJOMEmYM" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="E6YutOMcsNkj" aggregation="none" type="xnGQ9ti6LKXZ" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="3SUL0HC3J5nD" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="rNwVScpPBzzj" aggregation="none" type="nKah2FElYQjf" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="1ap7w9xfXvhO" aggregation="none" type="xnGQ9ti6LKXZ" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="BpxKfUoNUVPF" aggregation="none" type="nKah2FElYQjf" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="KWxie9zrEVl7" aggregation="none" type="xnGQ9ti6LKXZ" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="2lGX5o190Fyn" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="3iYkuJxmgrF8" aggregation="composite" type="xnGQ9ti6LKXZ" name="" multiplicity="1" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="T4Vc2TM33BBx" aggregation="none" type="akTdL0BuuMIi" name="" multiplicity="*" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="s5jkSSRcHNww" aggregation="composite" type="xnGQ9ti6LKXZ" name="" multiplicity="1" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="rkKKDhZVDWDq" aggregation="none" type="akTdL0BuuMIi" name="" multiplicity="*" />
</UML:Association.connection>
</UML:Association>
<UML:Enumeration stereotype="enum" isSpecification="false" isLeaf="false" visibility="public" namespace="Logical View" xmi.id="mtZJnRKOO7ZU" isRoot="false" isAbstract="false" name="cp_conn_state_t" >
@@ -89,20 +89,20 @@
</UML:Enumeration>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="t1BwC0faIOY6" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="1jchZro2uHdw" aggregation="aggregate" type="ySeTGJOMEmYM" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="kzxn86kOCLAB" aggregation="none" type="Dd5IhQuqhODL" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="7iYM5UHuCZEP" aggregation="aggregate" type="ySeTGJOMEmYM" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="GnvRK6HwHwmx" aggregation="none" type="Dd5IhQuqhODL" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="X4PpSxvCxRZk" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="cKGa20R3k3iH" aggregation="aggregate" type="xnGQ9ti6LKXZ" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="vUJpmwjWtgIz" aggregation="none" type="Dd5IhQuqhODL" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="MjVqMlkRRIoW" aggregation="aggregate" type="xnGQ9ti6LKXZ" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="m3PwcdJsRCJj" aggregation="none" type="Dd5IhQuqhODL" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="vFMsgta757Na" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="n2MxLW9yqNWs" aggregation="aggregate" type="xnGQ9ti6LKXZ" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="Nxt5zZMu2eho" aggregation="none" type="Dd5IhQuqhODL" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="JbfaVRVs80gV" aggregation="aggregate" type="xnGQ9ti6LKXZ" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="jQw9gidQl2MN" aggregation="none" type="Dd5IhQuqhODL" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Package stereotype="folder" isSpecification="false" isLeaf="false" visibility="public" namespace="Logical View" xmi.id="K35NPMr9taR3" isRoot="false" isAbstract="false" name="Classes" >
@@ -153,6 +153,11 @@
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation comment="uninit the bandwidth manager allocations" isSpecification="false" isLeaf="false" visibility="public" xmi.id="CX7QmGnNQfyu" isRoot="false" isAbstract="false" isQuery="false" name="uninit" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="8VFn5SRIJtio" isRoot="false" isAbstract="false" isQuery="false" name="finalise_sched" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter comment="Finalise the schedule before sending it." isSpecification="false" visibility="private" xmi.id="9SlYSZ6hs32a" value="" type="LMD9GuDpzhxX" name="conn_allocations" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class stereotype="CCo Action Module" comment="- Functions reacting to incoming MME related to global connection.
@@ -417,238 +422,238 @@ It manages the order and return the most prior connection" isSpecification="fals
</UML:Package>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="SE4drlhQgGnK" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="eOD5lNKe7tQI" aggregation="none" type="xnGQ9ti6LKXZ" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="NtGD9jlsapYU" aggregation="none" type="Dd5IhQuqhODL" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="HGhycf3yRuOI" aggregation="none" type="xnGQ9ti6LKXZ" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="31SlrGOJVle5" aggregation="none" type="Dd5IhQuqhODL" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="5N0jdm3LnaNE" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="heblY8YCUlFG" aggregation="none" type="ySeTGJOMEmYM" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="8XsFOIXl9lwJ" aggregation="none" type="Dd5IhQuqhODL" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="PI97KHTcVAa7" aggregation="none" type="ySeTGJOMEmYM" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="qb5FVUYXTyII" aggregation="none" type="Dd5IhQuqhODL" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="b7KNffbX2W2O" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="Uh93UfVAJ6vp" aggregation="aggregate" type="akTdL0BuuMIi" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="CT0hEDvKlnZ7" aggregation="none" type="Dd5IhQuqhODL" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="EebhPDmpWvwq" aggregation="aggregate" type="akTdL0BuuMIi" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="CPQhYznMasb4" aggregation="none" type="Dd5IhQuqhODL" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="fpbgLd4VX8IR" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="35rDonUHTbKx" aggregation="aggregate" type="ySeTGJOMEmYM" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="Hn7Yr1M4SMjh" aggregation="none" type="Dd5IhQuqhODL" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="K7bn4r3GVdys" aggregation="aggregate" type="ySeTGJOMEmYM" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="qihMccBozbUV" aggregation="none" type="Dd5IhQuqhODL" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="kz0I7IjzeXWP" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="XczINXQQcFbO" aggregation="none" type="ySeTGJOMEmYM" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="23fVdxTskYQc" aggregation="none" type="Dd5IhQuqhODL" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="aHp97RDSWoDa" aggregation="none" type="ySeTGJOMEmYM" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="dFr8sn0iVg37" aggregation="none" type="Dd5IhQuqhODL" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="nVqR2Kp5JL6z" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="Zke26NhczguM" aggregation="aggregate" type="ySeTGJOMEmYM" name="" multiplicity="1" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="DIknXKCYLp1y" aggregation="none" type="Dd5IhQuqhODL" name="" multiplicity="*" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="GEuDnMhMbWVi" aggregation="aggregate" type="ySeTGJOMEmYM" name="" multiplicity="1" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="vi8SUM07bpDR" aggregation="none" type="Dd5IhQuqhODL" name="" multiplicity="*" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="FuUBzFE99m1F" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="nUqX1H7a1lc6" aggregation="aggregate" type="ySeTGJOMEmYM" name="" multiplicity="0" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="6Hi5yaP9r8xM" aggregation="none" type="pEl1C68UjFRR" name="" multiplicity="4" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="aB96rAB5O3JC" aggregation="aggregate" type="ySeTGJOMEmYM" name="" multiplicity="0" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="P0YyU1hQjnqB" aggregation="none" type="pEl1C68UjFRR" name="" multiplicity="4" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="aRjAdPOlJ8Zo" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="S7snuumhOcDP" aggregation="none" type="xnGQ9ti6LKXZ" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="rKyr4YvAqbEo" aggregation="none" type="pEl1C68UjFRR" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="7qIgeT7EeFKU" aggregation="none" type="xnGQ9ti6LKXZ" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="PUZmXqyvoUtJ" aggregation="none" type="pEl1C68UjFRR" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="iFQH9XCi3DbL" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="9dvylqLBxDxs" aggregation="composite" type="pEl1C68UjFRR" name="" multiplicity="1" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="7jXUJir91ny5" aggregation="none" type="niNHo3iBMi93" name="" multiplicity="*" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="VYjCMXNTNd81" aggregation="composite" type="pEl1C68UjFRR" name="" multiplicity="1" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="6FEiSWCs0keY" aggregation="none" type="niNHo3iBMi93" name="" multiplicity="*" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="mfAF1Et9RgMb" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="MrFCSTyZ5tYo" aggregation="none" type="nKah2FElYQjf" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="kr0f2vV8c3av" aggregation="none" type="xnGQ9ti6LKXZ" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="YaTN2KeVtLhF" aggregation="none" type="nKah2FElYQjf" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="s2gDdoFh2RPU" aggregation="none" type="xnGQ9ti6LKXZ" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="8NatufiLOVge" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="jP2kD0pZr3jH" aggregation="none" type="akTdL0BuuMIi" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="UhrZaNMIEKyE" aggregation="none" type="Dd5IhQuqhODL" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="xaKyIyUqWvBY" aggregation="none" type="akTdL0BuuMIi" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="Fp18AiL2i0GL" aggregation="none" type="Dd5IhQuqhODL" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="1V4Vw7QgAqng" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="FTMrUwkEMnyZ" aggregation="composite" type="ySeTGJOMEmYM" name="" multiplicity="0" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="lm6bppqHWfr4" aggregation="none" type="pEl1C68UjFRR" name="" multiplicity="4" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="mT2osSHp0blI" aggregation="composite" type="ySeTGJOMEmYM" name="" multiplicity="0" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="YF82AIbO7cWG" aggregation="none" type="pEl1C68UjFRR" name="" multiplicity="4" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="rG6FnLTUU3xX" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="2BNEVJTikpZF" aggregation="none" type="ySeTGJOMEmYM" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="kHR62Ndo9jNw" aggregation="none" type="pEl1C68UjFRR" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="JqG1qWNcxNPp" aggregation="none" type="ySeTGJOMEmYM" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="ngdnFO5neCqm" aggregation="none" type="pEl1C68UjFRR" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="w2GO5CvfhZ6h" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="WDE0t34tEP8h" aggregation="composite" type="xnGQ9ti6LKXZ" name="" multiplicity="1" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="ibPTQygAF7EI" aggregation="none" type="pEl1C68UjFRR" name="" multiplicity="4" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="SPAZzfpGT6GJ" aggregation="composite" type="xnGQ9ti6LKXZ" name="" multiplicity="1" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="abtWyGJmuwZA" aggregation="none" type="pEl1C68UjFRR" name="" multiplicity="4" />
</UML:Association.connection>
</UML:Association>
<UML:Generalization isSpecification="false" child="ySeTGJOMEmYM" visibility="public" namespace="Logical View" xmi.id="he8aiM3PdmBs" parent="xnGQ9ti6LKXZ" discriminator="" name="" />
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="RdSzOM9ws9pF" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="Ur4cYPY2ck2T" aggregation="none" type="ySeTGJOMEmYM" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="n7NzWVgD65gU" aggregation="none" type="nKah2FElYQjf" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="JdxvnlfF8qm8" aggregation="none" type="ySeTGJOMEmYM" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="TcMugcBED4kC" aggregation="none" type="nKah2FElYQjf" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="TjLJsBY0YHzZ" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="1MdFRrXthZVD" aggregation="composite" type="nKah2FElYQjf" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="y2GYmI2aNNZs" aggregation="none" type="Dd5IhQuqhODL" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="J2yDwVNF6JAt" aggregation="composite" type="nKah2FElYQjf" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="2q6BetH5Tdz7" aggregation="none" type="Dd5IhQuqhODL" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="FZnmqkJSolys" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="qE5uJjOL31aU" aggregation="composite" type="nKah2FElYQjf" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="r5NWcrjatz6f" aggregation="none" type="Dd5IhQuqhODL" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="GALTC4dV6bh2" aggregation="composite" type="nKah2FElYQjf" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="54IBLQ3OE7Xs" aggregation="none" type="Dd5IhQuqhODL" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="A4CznApzfO14" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="G6DdTlVHzYBG" aggregation="composite" type="Dd5IhQuqhODL" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="HaZKZ7mOA8um" aggregation="none" type="nKah2FElYQjf" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="yoxRPuYf2s7F" aggregation="composite" type="Dd5IhQuqhODL" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="wki2KP2PSIYn" aggregation="none" type="nKah2FElYQjf" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="5MhNVwbXrStj" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="zeKqbRTrVhVx" aggregation="none" type="xnGQ9ti6LKXZ" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="QyENXQdm0B7X" aggregation="none" type="ySeTGJOMEmYM" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="jZ9xheofQj5q" aggregation="none" type="xnGQ9ti6LKXZ" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="ebTgRYtNJcNb" aggregation="none" type="ySeTGJOMEmYM" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="yGvogmXTI20E" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="IrwRxqDuUWk4" aggregation="none" type="pEl1C68UjFRR" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="vEvQtONJLces" aggregation="none" type="ySeTGJOMEmYM" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="1O0RgWFN4MJl" aggregation="none" type="pEl1C68UjFRR" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="17OPoRFQ1h5S" aggregation="none" type="ySeTGJOMEmYM" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="yR77gv82Dngk" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="0Hc0QhVhZR8W" aggregation="composite" type="d8mKKcTJhtMZ" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="GLRip9mkNiBE" aggregation="none" type="Dd5IhQuqhODL" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="FyqWYB7YZ7zE" aggregation="composite" type="d8mKKcTJhtMZ" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="cCbgXsPWxlvm" aggregation="none" type="Dd5IhQuqhODL" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="jDTu07ebJ4Yi" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="4WXP69F6Rs4p" aggregation="composite" type="Dd5IhQuqhODL" name="" multiplicity="1" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="ZaW6zebFy2yn" aggregation="none" type="d8mKKcTJhtMZ" name="" multiplicity="1" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="DBCCqFe5CSck" aggregation="composite" type="Dd5IhQuqhODL" name="" multiplicity="1" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="ejGBpEPPQz5x" aggregation="none" type="d8mKKcTJhtMZ" name="" multiplicity="1" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="qzZi0HXSKdRg" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="9kYXQhlVDHsK" aggregation="composite" type="Dd5IhQuqhODL" name="" multiplicity="1" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="Q8OpyTdV39c2" aggregation="none" type="Q60RU8Qxt2jh" name="" multiplicity="1" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="rSTpDPbOYlaM" aggregation="composite" type="Dd5IhQuqhODL" name="" multiplicity="1" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="zDRBf1tHlATY" aggregation="none" type="Q60RU8Qxt2jh" name="" multiplicity="1" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="Ytu0ZEZIt40G" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="mDIiDGVMy1rP" aggregation="none" type="nKah2FElYQjf" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="ibsuqkCEqa2m" aggregation="none" type="ySeTGJOMEmYM" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="Oqxmp0kfSBUd" aggregation="none" type="nKah2FElYQjf" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="Y324maQlnqwT" aggregation="none" type="ySeTGJOMEmYM" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="yIAhg4g39Wum" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="3fI4ms5W3LEE" aggregation="aggregate" type="ySeTGJOMEmYM" name="" multiplicity="1" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="ZkYXjOwSzoKn" aggregation="none" type="adjwEdq884ob" name="" multiplicity="*" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="rqia0B8M038p" aggregation="aggregate" type="ySeTGJOMEmYM" name="" multiplicity="1" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="1qUT0w7Yz7bm" aggregation="none" type="adjwEdq884ob" name="" multiplicity="*" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="KbBvQBO8mrJC" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="XWzN4188eQAP" aggregation="aggregate" type="Dd5IhQuqhODL" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="GFvJaAX9s5hb" aggregation="none" type="adjwEdq884ob" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="h1XVrSwhIeHG" aggregation="aggregate" type="Dd5IhQuqhODL" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="oOaoPibRX4sX" aggregation="none" type="adjwEdq884ob" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="1ZrlQBx4omHB" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="Tb1QOLBvpBGu" aggregation="aggregate" type="adjwEdq884ob" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="AO0nmAC2Q5J0" aggregation="none" type="Dd5IhQuqhODL" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="0z3y4eikeDFV" aggregation="aggregate" type="adjwEdq884ob" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="f9AvlS9ZojLD" aggregation="none" type="Dd5IhQuqhODL" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="SgCGphSMnicE" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="Fq87uphLQikm" aggregation="none" type="adjwEdq884ob" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="2vhr4wjFIj05" aggregation="none" type="xnGQ9ti6LKXZ" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="SvczzVWxSXtX" aggregation="none" type="adjwEdq884ob" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="CbHqpUJSbUOM" aggregation="none" type="xnGQ9ti6LKXZ" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="4n7CxO4qepqv" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="uC5IHPGVFOc7" aggregation="none" type="pEl1C68UjFRR" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="DHTc0DM064pB" aggregation="none" type="adjwEdq884ob" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="uXuiHDth8We5" aggregation="none" type="pEl1C68UjFRR" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="z83RfuyrWDfJ" aggregation="none" type="adjwEdq884ob" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="a1oSjxPd5iaz" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="yZOGGOJ8YPQp" aggregation="none" type="adjwEdq884ob" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="ohK13v7FCYrA" aggregation="none" type="ySeTGJOMEmYM" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="fzjGT5bNbV3q" aggregation="none" type="adjwEdq884ob" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="iuXpO9uNHvpu" aggregation="none" type="ySeTGJOMEmYM" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="4NrS31h8LsjY" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="jBApD0yBZMQn" aggregation="composite" type="oE5CCxttNgAF" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="kjwI6K6s1Ou5" aggregation="none" type="Dd5IhQuqhODL" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="qlmKzRbeOKvr" aggregation="composite" type="oE5CCxttNgAF" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="QWC1zDpf8MUW" aggregation="none" type="Dd5IhQuqhODL" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="VqiqgPP0C8zY" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="HzIUX7cGIn5W" aggregation="composite" type="Dd5IhQuqhODL" name="" multiplicity="1" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="l2hKO757p1Nv" aggregation="none" type="oE5CCxttNgAF" name="" multiplicity="1" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="VPukIje8UOQR" aggregation="composite" type="Dd5IhQuqhODL" name="" multiplicity="1" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="o16CKz4kTEjQ" aggregation="none" type="oE5CCxttNgAF" name="" multiplicity="1" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="hTFpkGG8AM5T" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="MToLqgO7fgZC" aggregation="composite" type="d8mKKcTJhtMZ" name="" multiplicity="1" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="nCQ6zVckXH2u" aggregation="none" type="SwQGxd6xVixe" name="" multiplicity="1" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="SY5YsY4Lvw3D" aggregation="composite" type="d8mKKcTJhtMZ" name="" multiplicity="1" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="dhK86kXumb46" aggregation="none" type="SwQGxd6xVixe" name="" multiplicity="1" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="U9HR73bnbWVt" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="N71C7M5Rqrmg" aggregation="none" type="ySeTGJOMEmYM" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="X9lApLKbXkhU" aggregation="none" type="Ffpcevz092To" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="Y8ozLVPn1TLt" aggregation="none" type="ySeTGJOMEmYM" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="1NCwKF7xuR3y" aggregation="none" type="Ffpcevz092To" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="REz0iVtn4vkj" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="GHElWEdtJe3O" aggregation="none" type="Ffpcevz092To" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="17ppyaTUjEeY" aggregation="none" type="ySeTGJOMEmYM" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="CbqwAv2j1oiM" aggregation="none" type="Ffpcevz092To" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="J67KZQBYoNS6" aggregation="none" type="ySeTGJOMEmYM" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="iYWkSGRVz8hL" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="Xz94joYx3kha" aggregation="none" type="Ffpcevz092To" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="wKRExTcwaQjW" aggregation="none" type="xnGQ9ti6LKXZ" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="aZ1U15TBeJ7o" aggregation="none" type="Ffpcevz092To" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="E7VGvEaEKiWr" aggregation="none" type="xnGQ9ti6LKXZ" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="eYhdhOxPg2Vx" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="0C0jOdHucPyJ" aggregation="composite" type="adjwEdq884ob" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="BVHFDwp8GGMB" aggregation="none" type="Ffpcevz092To" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="8hPu2r0cQ24P" aggregation="composite" type="adjwEdq884ob" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="5VajpfV1m1Fh" aggregation="none" type="Ffpcevz092To" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="AnXqp1nebv8V" name="" >
<UML:Association.connection>
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="jw7HMqoM0m3N" aggregation="composite" type="Ffpcevz092To" name="" />
- <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="PLH1iDJtga8s" aggregation="none" type="adjwEdq884ob" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="DqtXWPOc4nX4" aggregation="composite" type="Ffpcevz092To" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="cXe0XjQcEyJ1" aggregation="none" type="adjwEdq884ob" name="" />
</UML:Association.connection>
</UML:Association>
<UML:Package stereotype="folder" isSpecification="false" isLeaf="false" visibility="public" namespace="Logical View" xmi.id="8IfFoRAxojCs" isRoot="false" isAbstract="false" name="Sequence diagram" >
<UML:Namespace.ownedElement/>
<XMI.extension xmi.extender="umbrello" >
<diagrams>
- <diagram snapgrid="0" showattsig="1" fillcolor="#ffffc0" linewidth="0" zoom="100" showgrid="0" showopsig="1" usefillcolor="1" snapx="10" canvaswidth="927" snapy="10" showatts="1" xmi.id="fHTon9X3gX1E" documentation="" type="3" showops="1" showpackage="0" name="cco_action_cc_link_new_req_valid" localid="g2KjDIEXFsVO" showstereotype="0" showscope="1" snapcsgrid="0" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="#ff0000" canvasheight="862" >
+ <diagram snapgrid="0" showattsig="1" fillcolor="#ffffc0" linewidth="0" zoom="100" showgrid="0" showopsig="1" usefillcolor="1" snapx="10" canvaswidth="931" snapy="10" showatts="1" xmi.id="fHTon9X3gX1E" documentation="" type="3" showops="1" showpackage="0" name="cco_action_cc_link_new_req_valid" localid="g2KjDIEXFsVO" showstereotype="0" showscope="1" snapcsgrid="0" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="#ff0000" canvasheight="869" >
<widgets>
<objectwidget usesdiagramfillcolor="0" width="39" x="46" fillcolor="#ffffc0" y="17" instancename="" linewidth="none" height="63" usefillcolor="1" isinstance="0" xmi.id="pRzkrBbewp0R" decon="0" localid="r0ebcYhsDved" multipleinstance="0" drawasactor="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,1,0,0,0" linecolor="#ff0000" />
<objectwidget usesdiagramfillcolor="0" width="125" x="272" fillcolor="#ffffc0" y="48" instancename="" linewidth="none" height="28" usefillcolor="1" isinstance="0" xmi.id="ySeTGJOMEmYM" decon="0" localid="5ZRolH9OYbCJ" multipleinstance="0" drawasactor="0" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,1,0,0,0" linecolor="#ff0000" />
@@ -674,7 +679,7 @@ It manages the order and return the most prior connection" isSpecification="fals
</messages>
<associations/>
</diagram>
- <diagram snapgrid="0" showattsig="1" fillcolor="#ffffc0" linewidth="0" zoom="100" showgrid="0" showopsig="1" usefillcolor="1" snapx="10" canvaswidth="927" snapy="10" showatts="1" xmi.id="yhmIJA8o3LB5" documentation="" type="3" showops="1" showpackage="0" name="cco_action_cc_link_new_req_not_valid" localid="" showstereotype="0" showscope="1" snapcsgrid="0" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="#ff0000" canvasheight="862" >
+ <diagram snapgrid="0" showattsig="1" fillcolor="#ffffc0" linewidth="0" zoom="100" showgrid="0" showopsig="1" usefillcolor="1" snapx="10" canvaswidth="931" snapy="10" showatts="1" xmi.id="yhmIJA8o3LB5" documentation="" type="3" showops="1" showpackage="0" name="cco_action_cc_link_new_req_not_valid" localid="" showstereotype="0" showscope="1" snapcsgrid="0" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="#ff0000" canvasheight="869" >
<widgets>
<objectwidget usesdiagramfillcolor="0" width="39" x="46" fillcolor="#ffffc0" y="17" instancename="" linewidth="none" height="63" usefillcolor="1" isinstance="0" xmi.id="pRzkrBbewp0R" decon="0" localid="r0ebcYhsDved" multipleinstance="0" drawasactor="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,1,0,0,0" linecolor="#ff0000" />
<objectwidget usesdiagramfillcolor="0" width="114" x="520" fillcolor="#ffffc0" y="48" instancename="" linewidth="none" height="28" usefillcolor="1" isinstance="0" xmi.id="Ffpcevz092To" decon="0" localid="w4LrTD0CdDEH" multipleinstance="0" drawasactor="0" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,1,0,0,0" linecolor="#ff0000" />
@@ -690,7 +695,7 @@ It manages the order and return the most prior connection" isSpecification="fals
</messages>
<associations/>
</diagram>
- <diagram snapgrid="0" showattsig="1" fillcolor="#ffffc0" linewidth="0" zoom="100" showgrid="0" showopsig="1" usefillcolor="1" snapx="10" canvaswidth="927" snapy="10" showatts="1" xmi.id="ok2jsyqCdw9J" documentation="" type="3" showops="1" showpackage="0" name="cco_action_cc_link_rel_req" localid="" showstereotype="0" showscope="1" snapcsgrid="0" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="#ff0000" canvasheight="862" >
+ <diagram snapgrid="0" showattsig="1" fillcolor="#ffffc0" linewidth="0" zoom="100" showgrid="0" showopsig="1" usefillcolor="1" snapx="10" canvaswidth="931" snapy="10" showatts="1" xmi.id="ok2jsyqCdw9J" documentation="" type="3" showops="1" showpackage="0" name="cco_action_cc_link_rel_req" localid="" showstereotype="0" showscope="1" snapcsgrid="0" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="#ff0000" canvasheight="869" >
<widgets>
<objectwidget usesdiagramfillcolor="0" width="39" x="0" fillcolor="#ffffc0" y="17" instancename="" linewidth="none" height="63" usefillcolor="1" isinstance="0" xmi.id="pRzkrBbewp0R" decon="0" localid="r0ebcYhsDved" multipleinstance="0" drawasactor="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,1,0,0,0" linecolor="#ff0000" />
<objectwidget usesdiagramfillcolor="0" width="114" x="449" fillcolor="#ffffc0" y="48" instancename="" linewidth="none" height="28" usefillcolor="1" isinstance="0" xmi.id="Ffpcevz092To" decon="0" localid="w4LrTD0CdDEH" multipleinstance="0" drawasactor="0" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,1,0,0,0" linecolor="#ff0000" />
@@ -713,7 +718,7 @@ It manages the order and return the most prior connection" isSpecification="fals
</messages>
<associations/>
</diagram>
- <diagram snapgrid="0" showattsig="1" fillcolor="#ffffc0" linewidth="0" zoom="100" showgrid="0" showopsig="1" usefillcolor="1" snapx="10" canvaswidth="927" snapy="10" showatts="1" xmi.id="zbNIHnq6ICv9" documentation="" type="3" showops="1" showpackage="0" name="cco_action_cc_link_mod_req_valid" localid="" showstereotype="0" showscope="1" snapcsgrid="0" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="#ff0000" canvasheight="862" >
+ <diagram snapgrid="0" showattsig="1" fillcolor="#ffffc0" linewidth="0" zoom="100" showgrid="0" showopsig="1" usefillcolor="1" snapx="10" canvaswidth="931" snapy="10" showatts="1" xmi.id="zbNIHnq6ICv9" documentation="" type="3" showops="1" showpackage="0" name="cco_action_cc_link_mod_req_valid" localid="" showstereotype="0" showscope="1" snapcsgrid="0" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="#ff0000" canvasheight="869" >
<widgets>
<objectwidget usesdiagramfillcolor="0" width="39" x="0" fillcolor="#ffffc0" y="17" instancename="" linewidth="none" height="63" usefillcolor="1" isinstance="0" xmi.id="pRzkrBbewp0R" decon="0" localid="r0ebcYhsDved" multipleinstance="0" drawasactor="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,1,0,0,0" linecolor="#ff0000" />
<objectwidget usesdiagramfillcolor="0" width="114" x="423" fillcolor="#ffffc0" y="48" instancename="" linewidth="none" height="28" usefillcolor="1" isinstance="0" xmi.id="Ffpcevz092To" decon="0" localid="w4LrTD0CdDEH" multipleinstance="0" drawasactor="0" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,1,0,0,0" linecolor="#ff0000" />
@@ -739,7 +744,7 @@ It manages the order and return the most prior connection" isSpecification="fals
</messages>
<associations/>
</diagram>
- <diagram snapgrid="0" showattsig="1" fillcolor="#ffffc0" linewidth="0" zoom="100" showgrid="0" showopsig="1" usefillcolor="1" snapx="10" canvaswidth="927" snapy="10" showatts="1" xmi.id="jqjnWJ3RcZok" documentation="" type="3" showops="1" showpackage="0" name="cco_action_cc_link_mod_req_not_valid" localid="" showstereotype="0" showscope="1" snapcsgrid="0" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="#ff0000" canvasheight="862" >
+ <diagram snapgrid="0" showattsig="1" fillcolor="#ffffc0" linewidth="0" zoom="100" showgrid="0" showopsig="1" usefillcolor="1" snapx="10" canvaswidth="931" snapy="10" showatts="1" xmi.id="jqjnWJ3RcZok" documentation="" type="3" showops="1" showpackage="0" name="cco_action_cc_link_mod_req_not_valid" localid="" showstereotype="0" showscope="1" snapcsgrid="0" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="#ff0000" canvasheight="869" >
<widgets>
<objectwidget usesdiagramfillcolor="0" width="39" x="0" fillcolor="#ffffc0" y="17" instancename="" linewidth="none" height="63" usefillcolor="1" isinstance="0" xmi.id="pRzkrBbewp0R" decon="0" localid="r0ebcYhsDved" multipleinstance="0" drawasactor="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,1,0,0,0" linecolor="#ff0000" />
<objectwidget usesdiagramfillcolor="0" width="114" x="406" fillcolor="#ffffc0" y="48" instancename="" linewidth="none" height="28" usefillcolor="1" isinstance="0" xmi.id="Ffpcevz092To" decon="0" localid="w4LrTD0CdDEH" multipleinstance="0" drawasactor="0" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,1,0,0,0" linecolor="#ff0000" />
@@ -755,7 +760,7 @@ It manages the order and return the most prior connection" isSpecification="fals
</messages>
<associations/>
</diagram>
- <diagram snapgrid="0" showattsig="1" fillcolor="#ffffc0" linewidth="0" zoom="100" showgrid="0" showopsig="1" usefillcolor="1" snapx="10" canvaswidth="927" snapy="10" showatts="1" xmi.id="So6DeCWo8dXw" documentation="" type="3" showops="1" showpackage="0" name="cco_action_cc_link_sqz_req_rx_valid" localid="" showstereotype="0" showscope="1" snapcsgrid="0" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="#ff0000" canvasheight="862" >
+ <diagram snapgrid="0" showattsig="1" fillcolor="#ffffc0" linewidth="0" zoom="100" showgrid="0" showopsig="1" usefillcolor="1" snapx="10" canvaswidth="931" snapy="10" showatts="1" xmi.id="So6DeCWo8dXw" documentation="" type="3" showops="1" showpackage="0" name="cco_action_cc_link_sqz_req_rx_valid" localid="" showstereotype="0" showscope="1" snapcsgrid="0" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="#ff0000" canvasheight="869" >
<widgets>
<objectwidget usesdiagramfillcolor="0" width="39" x="0" fillcolor="#ffffc0" y="17" instancename="" linewidth="none" height="63" usefillcolor="1" isinstance="0" xmi.id="pRzkrBbewp0R" decon="0" localid="r0ebcYhsDved" multipleinstance="0" drawasactor="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,1,0,0,0" linecolor="#ff0000" />
<objectwidget usesdiagramfillcolor="0" width="114" x="407" fillcolor="#ffffc0" y="48" instancename="" linewidth="none" height="28" usefillcolor="1" isinstance="0" xmi.id="Ffpcevz092To" decon="0" localid="w4LrTD0CdDEH" multipleinstance="0" drawasactor="0" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,1,0,0,0" linecolor="#ff0000" />
@@ -781,7 +786,7 @@ It manages the order and return the most prior connection" isSpecification="fals
</messages>
<associations/>
</diagram>
- <diagram snapgrid="0" showattsig="1" fillcolor="#ffffc0" linewidth="0" zoom="100" showgrid="0" showopsig="1" usefillcolor="1" snapx="10" canvaswidth="927" snapy="10" showatts="1" xmi.id="0erZURpXzgym" documentation="" type="3" showops="1" showpackage="0" name="cco_action_cc_link_sqz_req_rx_not_valid" localid="" showstereotype="0" showscope="1" snapcsgrid="0" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="#ff0000" canvasheight="862" >
+ <diagram snapgrid="0" showattsig="1" fillcolor="#ffffc0" linewidth="0" zoom="100" showgrid="0" showopsig="1" usefillcolor="1" snapx="10" canvaswidth="931" snapy="10" showatts="1" xmi.id="0erZURpXzgym" documentation="" type="3" showops="1" showpackage="0" name="cco_action_cc_link_sqz_req_rx_not_valid" localid="" showstereotype="0" showscope="1" snapcsgrid="0" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="#ff0000" canvasheight="869" >
<widgets>
<objectwidget usesdiagramfillcolor="0" width="39" x="0" fillcolor="#ffffc0" y="17" instancename="" linewidth="none" height="63" usefillcolor="1" isinstance="0" xmi.id="pRzkrBbewp0R" decon="0" localid="r0ebcYhsDved" multipleinstance="0" drawasactor="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,1,0,0,0" linecolor="#ff0000" />
<objectwidget usesdiagramfillcolor="0" width="114" x="471" fillcolor="#ffffc0" y="48" instancename="" linewidth="none" height="28" usefillcolor="1" isinstance="0" xmi.id="Ffpcevz092To" decon="0" localid="w4LrTD0CdDEH" multipleinstance="0" drawasactor="0" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,1,0,0,0" linecolor="#ff0000" />
@@ -797,7 +802,7 @@ It manages the order and return the most prior connection" isSpecification="fals
</messages>
<associations/>
</diagram>
- <diagram snapgrid="0" showattsig="1" fillcolor="#ffffc0" linewidth="0" zoom="100" showgrid="0" showopsig="1" usefillcolor="1" snapx="10" canvaswidth="927" snapy="10" showatts="1" xmi.id="xd1PHMGXFtVt" documentation="" type="3" showops="1" showpackage="0" name="cco_action_cc_alloc_move_req" localid="" showstereotype="0" showscope="1" snapcsgrid="0" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="#ff0000" canvasheight="862" >
+ <diagram snapgrid="0" showattsig="1" fillcolor="#ffffc0" linewidth="0" zoom="100" showgrid="0" showopsig="1" usefillcolor="1" snapx="10" canvaswidth="931" snapy="10" showatts="1" xmi.id="xd1PHMGXFtVt" documentation="" type="3" showops="1" showpackage="0" name="cco_action_cc_alloc_move_req" localid="" showstereotype="0" showscope="1" snapcsgrid="0" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="#ff0000" canvasheight="869" >
<widgets>
<objectwidget usesdiagramfillcolor="0" width="39" x="0" fillcolor="#ffffc0" y="17" instancename="" linewidth="none" height="63" usefillcolor="1" isinstance="0" xmi.id="pRzkrBbewp0R" decon="0" localid="r0ebcYhsDved" multipleinstance="0" drawasactor="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,1,0,0,0" linecolor="#ff0000" />
<objectwidget usesdiagramfillcolor="0" width="104" x="504" fillcolor="#ffffc0" y="48" instancename="" linewidth="none" height="28" usefillcolor="1" isinstance="0" xmi.id="xnGQ9ti6LKXZ" decon="0" localid="g2KjDIEXFsVO" multipleinstance="0" drawasactor="0" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,1,0,0,0" linecolor="#ff0000" />
@@ -813,7 +818,7 @@ It manages the order and return the most prior connection" isSpecification="fals
</messages>
<associations/>
</diagram>
- <diagram snapgrid="0" showattsig="1" fillcolor="#ffffc0" linewidth="0" zoom="100" showgrid="0" showopsig="1" usefillcolor="1" snapx="10" canvaswidth="927" snapy="10" showatts="1" xmi.id="l4MAtt7XrtF1" documentation="" type="3" showops="1" showpackage="0" name="cco_action_cc_ble_update_ind" localid="" showstereotype="0" showscope="1" snapcsgrid="0" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="#ff0000" canvasheight="862" >
+ <diagram snapgrid="0" showattsig="1" fillcolor="#ffffc0" linewidth="0" zoom="100" showgrid="0" showopsig="1" usefillcolor="1" snapx="10" canvaswidth="931" snapy="10" showatts="1" xmi.id="l4MAtt7XrtF1" documentation="" type="3" showops="1" showpackage="0" name="cco_action_cc_ble_update_ind" localid="" showstereotype="0" showscope="1" snapcsgrid="0" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="#ff0000" canvasheight="869" >
<widgets>
<objectwidget usesdiagramfillcolor="0" width="39" x="0" fillcolor="#ffffc0" y="17" instancename="" linewidth="none" height="63" usefillcolor="1" isinstance="0" xmi.id="pRzkrBbewp0R" decon="0" localid="r0ebcYhsDved" multipleinstance="0" drawasactor="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,1,0,0,0" linecolor="#ff0000" />
<objectwidget usesdiagramfillcolor="0" width="114" x="468" fillcolor="#ffffc0" y="48" instancename="" linewidth="none" height="28" usefillcolor="1" isinstance="0" xmi.id="Ffpcevz092To" decon="0" localid="w4LrTD0CdDEH" multipleinstance="0" drawasactor="0" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,1,0,0,0" linecolor="#ff0000" />
@@ -836,17 +841,45 @@ It manages the order and return the most prior connection" isSpecification="fals
</messages>
<associations/>
</diagram>
+ <diagram snapgrid="0" showattsig="1" fillcolor="#ffffc0" linewidth="0" zoom="100" showgrid="0" showopsig="1" usefillcolor="1" snapx="10" canvaswidth="927" snapy="10" showatts="1" xmi.id="WTr0EIIjIoGN" documentation="" type="3" showops="1" showpackage="0" name="cco_action_cc_link_sqz_req_tx" localid="ay4ioc8tsonO" showstereotype="0" showscope="1" snapcsgrid="0" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="#ff0000" canvasheight="869" >
+ <widgets>
+ <objectwidget usesdiagramfillcolor="0" width="104" x="505" fillcolor="#ffffc0" y="48" instancename="" linewidth="none" height="28" usefillcolor="1" isinstance="0" xmi.id="xnGQ9ti6LKXZ" decon="0" localid="g2KjDIEXFsVO" multipleinstance="0" drawasactor="0" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,1,0,0,0" linecolor="#ff0000" />
+ <objectwidget usesdiagramfillcolor="0" width="125" x="226" fillcolor="#ffffc0" y="48" instancename="" linewidth="none" height="28" usefillcolor="1" isinstance="0" xmi.id="ySeTGJOMEmYM" decon="0" localid="5ZRolH9OYbCJ" multipleinstance="0" drawasactor="0" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,1,0,0,0" linecolor="#ff0000" />
+ <objectwidget usesdiagramfillcolor="0" width="39" x="32" fillcolor="#ffffc0" y="17" instancename="" linewidth="none" height="63" usefillcolor="1" isinstance="0" xmi.id="pRzkrBbewp0R" decon="0" localid="ay4ioc8tsonO" multipleinstance="0" drawasactor="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,1,0,0,0" linecolor="#ff0000" />
+ </widgets>
+ <messages>
+ <messagewidget usesdiagramfillcolor="1" width="277" x="288" fillcolor="none" y="117" operation="O87gKQtsw1DR" linewidth="none" widgetbid="g2KjDIEXFsVO" height="32" usefillcolor="1" seqnum="" textid="grDhZQuFSExg" widgetaid="5ZRolH9OYbCJ" isinstance="0" xmi.id="O87gKQtsw1DR" sequencemessagetype="1000" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="none" >
+ <floatingtext usesdiagramfillcolor="1" width="168" x="293" fillcolor="none" y="95" linewidth="none" posttext="" role="704" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="grDhZQuFSExg" text=": alloc_sched(ctx : cp_t*)" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="none" />
+ </messagewidget>
+ <messagewidget usesdiagramfillcolor="1" width="50" x="286" fillcolor="none" y="213" operation="QNnsMczV4BbV" linewidth="none" widgetbid="5ZRolH9OYbCJ" height="32" usefillcolor="1" seqnum="" textid="XtFP4RQkGeRn" widgetaid="5ZRolH9OYbCJ" isinstance="0" xmi.id="QNnsMczV4BbV" sequencemessagetype="1000" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="none" >
+ <floatingtext usesdiagramfillcolor="1" width="191" x="291" fillcolor="none" y="191" linewidth="none" posttext="" role="705" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="XtFP4RQkGeRn" text=": mme_conn_cnf(ctx : cp_t*)" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="none" />
+ </messagewidget>
+ <messagewidget usesdiagramfillcolor="1" width="267" x="289" fillcolor="none" y="181" operation="qu2Ac479Q7k0" linewidth="none" widgetbid="5ZRolH9OYbCJ" height="8" usefillcolor="1" seqnum="" textid="6CZqYDJIqvG9" widgetaid="g2KjDIEXFsVO" isinstance="0" xmi.id="qu2Ac479Q7k0" sequencemessagetype="1001" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="none" >
+ <floatingtext usesdiagramfillcolor="1" width="420" x="294" fillcolor="none" y="159" linewidth="none" posttext="" role="704" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="6CZqYDJIqvG9" text=": process_cc_link_sqz_req_tx(ctx : cp_t*, mme : cp_mme_tx_t*)" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="none" />
+ </messagewidget>
+ <messagewidget usesdiagramfillcolor="1" width="245" x="51" fillcolor="none" y="101" operation="any operation asking for scheduling" linewidth="none" widgetbid="5ZRolH9OYbCJ" height="163" usefillcolor="1" seqnum="" textid="MdxFt60R459q" widgetaid="ay4ioc8tsonO" isinstance="0" xmi.id="sFO9cMFov5K9" sequencemessagetype="1000" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="none" >
+ <floatingtext usesdiagramfillcolor="1" width="249" x="56" fillcolor="none" y="79" linewidth="none" posttext="" role="704" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="MdxFt60R459q" text=": any operation asking for scheduling" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="none" />
+ </messagewidget>
+ </messages>
+ <associations/>
+ </diagram>
</diagrams>
</XMI.extension>
</UML:Package>
+ <UML:Association isSpecification="false" visibility="public" namespace="Logical View" xmi.id="F2c5R39MF9xW" name="" >
+ <UML:Association.connection>
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="false" xmi.id="LsDNdiSDD6Dl" aggregation="none" type="Ffpcevz092To" name="" />
+ <UML:AssociationEnd isSpecification="false" visibility="public" changeability="changeable" isNavigable="true" xmi.id="ndL2ad1CO2YA" aggregation="none" type="pEl1C68UjFRR" name="" />
+ </UML:Association.connection>
+ </UML:Association>
</UML:Namespace.ownedElement>
<XMI.extension xmi.extender="umbrello" >
<diagrams>
- <diagram snapgrid="0" showattsig="1" fillcolor="#ffffc0" linewidth="0" zoom="81" showgrid="0" showopsig="1" usefillcolor="1" snapx="10" canvaswidth="1144" snapy="10" showatts="1" xmi.id="niq745CwWtmB" documentation="CCo action module" type="1" showops="1" showpackage="0" name="class_diagram_cco_conn" localid="" showstereotype="0" showscope="1" snapcsgrid="0" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="#ff0000" canvasheight="1064" >
+ <diagram snapgrid="0" showattsig="1" fillcolor="#ffffc0" linewidth="0" zoom="81" showgrid="0" showopsig="1" usefillcolor="1" snapx="10" canvaswidth="1185" snapy="10" showatts="1" xmi.id="niq745CwWtmB" documentation="CCo action module" type="1" showops="1" showpackage="0" name="class_diagram_cco_conn" localid="" showstereotype="0" showscope="1" snapcsgrid="0" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="#ff0000" canvasheight="1053" >
<widgets>
- <classwidget usesdiagramfillcolor="0" width="346" showattsigs="601" x="459" fillcolor="#ffffc0" y="13" showopsigs="601" linewidth="none" height="162" usefillcolor="1" showpubliconly="0" showattributes="1" isinstance="0" xmi.id="xnGQ9ti6LKXZ" showoperations="1" showpackage="0" showscope="1" usesdiagramusefillcolor="0" font="Sans Serif,10,-1,5,50,0,0,0,0,0" linecolor="#ff0000" />
+ <classwidget usesdiagramfillcolor="0" width="416" showattsigs="601" x="459" fillcolor="#ffffc0" y="13" showopsigs="601" linewidth="none" height="180" usefillcolor="1" showpubliconly="0" showattributes="1" isinstance="0" xmi.id="xnGQ9ti6LKXZ" showoperations="1" showpackage="0" showscope="1" usesdiagramusefillcolor="0" font="Sans Serif,10,-1,5,75,0,0,0,0,0" linecolor="#ff0000" />
<classwidget usesdiagramfillcolor="0" width="433" showattsigs="601" x="0" fillcolor="#ffffc0" y="0" showopsigs="601" linewidth="none" height="207" usefillcolor="1" showpubliconly="0" showattributes="1" isinstance="0" xmi.id="ySeTGJOMEmYM" showoperations="1" showpackage="0" showscope="1" usesdiagramusefillcolor="0" font="Sans Serif,10,-1,5,50,0,0,0,0,0" linecolor="#ff0000" />
- <classwidget usesdiagramfillcolor="0" width="271" showattsigs="601" x="837" fillcolor="#ffffc0" y="36" showopsigs="601" linewidth="none" height="117" usefillcolor="1" showpubliconly="0" showattributes="1" isinstance="0" xmi.id="akTdL0BuuMIi" showoperations="1" showpackage="0" showscope="1" usesdiagramusefillcolor="0" font="Sans Serif,10,-1,5,50,0,0,0,0,0" linecolor="#ff0000" />
+ <classwidget usesdiagramfillcolor="0" width="271" showattsigs="601" x="910" fillcolor="#ffffc0" y="45" showopsigs="601" linewidth="none" height="117" usefillcolor="1" showpubliconly="0" showattributes="1" isinstance="0" xmi.id="akTdL0BuuMIi" showoperations="1" showpackage="0" showscope="1" usesdiagramusefillcolor="0" font="Sans Serif,10,-1,5,75,0,0,0,0,0" linecolor="#ff0000" />
<classwidget usesdiagramfillcolor="0" width="180" showattsigs="601" x="400" fillcolor="#ffffc0" y="598" showopsigs="601" linewidth="none" height="189" usefillcolor="1" showpubliconly="0" showattributes="1" isinstance="0" xmi.id="Dd5IhQuqhODL" showoperations="1" showpackage="0" showscope="1" usesdiagramusefillcolor="0" font="Sans Serif,10,-1,5,50,0,0,0,0,0" linecolor="#ff0000" />
<enumwidget usesdiagramfillcolor="0" width="128" x="677" fillcolor="#ffffc0" y="523" linewidth="none" height="162" usefillcolor="1" isinstance="0" xmi.id="mtZJnRKOO7ZU" showpackage="0" usesdiagramusefillcolor="0" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="#ff0000" />
<classwidget usesdiagramfillcolor="0" width="256" showattsigs="601" x="680" fillcolor="#ffffc0" y="226" showopsigs="601" linewidth="none" height="126" usefillcolor="1" showpubliconly="0" showattributes="1" isinstance="0" xmi.id="pEl1C68UjFRR" showoperations="1" showpackage="0" showscope="1" usesdiagramusefillcolor="0" font="Sans Serif,10,-1,5,50,0,0,0,0,0" linecolor="#ff0000" />
@@ -862,31 +895,31 @@ It manages the order and return the most prior connection" isSpecification="fals
<associations>
<assocwidget totalcounta="2" indexa="1" totalcountb="2" indexb="1" linewidth="none" widgetbid="akTdL0BuuMIi" widgetaid="xnGQ9ti6LKXZ" xmi.id="2lGX5o190Fyn" type="510" linecolor="none" >
<linepath>
- <startpoint startx="805" starty="94" />
- <endpoint endx="837" endy="94" />
+ <startpoint startx="875" starty="103" />
+ <endpoint endx="910" endy="103" />
</linepath>
- <floatingtext usesdiagramfillcolor="1" width="17" x="610" fillcolor="none" y="74" linewidth="none" posttext="" role="701" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="UvykCIwtE19Z" text="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="none" />
- <floatingtext usesdiagramfillcolor="1" width="15" x="839" fillcolor="none" y="83" linewidth="none" posttext="" role="702" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="qvtqhxB7GQ6y" text="*" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="none" />
+ <floatingtext usesdiagramfillcolor="1" width="17" x="680" fillcolor="none" y="83" linewidth="none" posttext="" role="701" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="Hc9LYburT5E4" text="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="none" />
+ <floatingtext usesdiagramfillcolor="1" width="15" x="912" fillcolor="none" y="92" linewidth="none" posttext="" role="702" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="neH0lSjY63Ye" text="*" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="none" />
</assocwidget>
<assocwidget totalcounta="2" indexa="1" totalcountb="2" indexb="1" linewidth="none" widgetbid="niNHo3iBMi93" widgetaid="pEl1C68UjFRR" xmi.id="iFQH9XCi3DbL" type="510" linecolor="none" >
<linepath>
<startpoint startx="808" starty="352" />
<endpoint endx="808" endy="394" />
</linepath>
- <floatingtext usesdiagramfillcolor="1" width="17" x="613" fillcolor="none" y="355" linewidth="none" posttext="" role="701" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="ePpIxy8Rt6A3" text="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="none" />
- <floatingtext usesdiagramfillcolor="1" width="15" x="823" fillcolor="none" y="369" linewidth="none" posttext="" role="702" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="O6vd52Avx3ke" text="*" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="none" />
+ <floatingtext usesdiagramfillcolor="1" width="17" x="613" fillcolor="none" y="355" linewidth="none" posttext="" role="701" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="gao2aMCrxJBT" text="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="none" />
+ <floatingtext usesdiagramfillcolor="1" width="15" x="823" fillcolor="none" y="369" linewidth="none" posttext="" role="702" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="u3IL8UNt9cru" text="*" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="none" />
</assocwidget>
<assocwidget totalcounta="3" indexa="2" totalcountb="2" indexb="1" linewidth="none" widgetbid="pEl1C68UjFRR" widgetaid="xnGQ9ti6LKXZ" xmi.id="w2GO5CvfhZ6h" type="510" linecolor="none" >
<linepath>
- <startpoint startx="689" starty="175" />
+ <startpoint startx="736" starty="193" />
<endpoint endx="808" endy="226" />
</linepath>
- <floatingtext usesdiagramfillcolor="1" width="17" x="873" fillcolor="none" y="174" linewidth="none" posttext="" role="701" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="0vlEMqCyF2ED" text="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="none" />
- <floatingtext usesdiagramfillcolor="1" width="17" x="780" fillcolor="none" y="186" linewidth="none" posttext="" role="702" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="yNcpTmrqqmTw" text="4" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="none" />
+ <floatingtext usesdiagramfillcolor="1" width="17" x="922" fillcolor="none" y="191" linewidth="none" posttext="" role="701" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="4bQ8czmIXYK5" text="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="none" />
+ <floatingtext usesdiagramfillcolor="1" width="17" x="779" fillcolor="none" y="188" linewidth="none" posttext="" role="702" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="vUvqn6Hf9Z0F" text="4" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="none" />
</assocwidget>
<assocwidget totalcounta="2" indexa="1" totalcountb="2" indexb="1" linewidth="none" widgetbid="ySeTGJOMEmYM" widgetaid="xnGQ9ti6LKXZ" xmi.id="5MhNVwbXrStj" type="512" linecolor="none" >
<linepath>
- <startpoint startx="459" starty="94" />
+ <startpoint startx="459" starty="103" />
<endpoint endx="433" endy="103" />
</linepath>
</assocwidget>
@@ -895,16 +928,16 @@ It manages the order and return the most prior connection" isSpecification="fals
<startpoint startx="400" starty="692" />
<endpoint endx="325" endy="692" />
</linepath>
- <floatingtext usesdiagramfillcolor="1" width="16" x="380" fillcolor="none" y="621" linewidth="none" posttext="" role="701" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="obpjeZNdT7rn" text="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,5,50,0,0,0,0,0" linecolor="none" />
- <floatingtext usesdiagramfillcolor="1" width="16" x="328" fillcolor="none" y="669" linewidth="none" posttext="" role="702" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="x2lA2xL0Kypm" text="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,5,50,0,0,0,0,0" linecolor="none" />
+ <floatingtext usesdiagramfillcolor="1" width="16" x="380" fillcolor="none" y="621" linewidth="none" posttext="" role="701" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="3L6Axx41WTA8" text="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,5,50,0,0,0,0,0" linecolor="none" />
+ <floatingtext usesdiagramfillcolor="1" width="16" x="328" fillcolor="none" y="669" linewidth="none" posttext="" role="702" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="QuOvTg0OAvCv" text="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,5,50,0,0,0,0,0" linecolor="none" />
</assocwidget>
<assocwidget totalcounta="3" indexa="1" totalcountb="2" indexb="1" linewidth="none" widgetbid="Q60RU8Qxt2jh" widgetaid="Dd5IhQuqhODL" xmi.id="qzZi0HXSKdRg" type="510" linecolor="none" >
<linepath>
<startpoint startx="460" starty="787" />
<endpoint endx="441" endy="831" />
</linepath>
- <floatingtext usesdiagramfillcolor="1" width="16" x="439" fillcolor="none" y="946" linewidth="none" posttext="" role="701" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="kgcbQ3VCeKvG" text="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,5,50,0,0,0,0,0" linecolor="none" />
- <floatingtext usesdiagramfillcolor="1" width="16" x="426" fillcolor="none" y="806" linewidth="none" posttext="" role="702" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="sHrLOj8JjrTl" text="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,5,50,0,0,0,0,0" linecolor="none" />
+ <floatingtext usesdiagramfillcolor="1" width="16" x="439" fillcolor="none" y="946" linewidth="none" posttext="" role="701" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="zRa6yYJ1rPAo" text="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,5,50,0,0,0,0,0" linecolor="none" />
+ <floatingtext usesdiagramfillcolor="1" width="16" x="426" fillcolor="none" y="806" linewidth="none" posttext="" role="702" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="NCqrfy03sMyL" text="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,5,50,0,0,0,0,0" linecolor="none" />
</assocwidget>
<assocwidget totalcounta="2" indexa="1" totalcountb="2" indexb="1" linewidth="none" widgetbid="Dd5IhQuqhODL" widgetaid="adjwEdq884ob" xmi.id="1ZrlQBx4omHB" type="501" linecolor="none" >
<linepath>
@@ -917,23 +950,23 @@ It manages the order and return the most prior connection" isSpecification="fals
<startpoint startx="604" starty="474" />
<endpoint endx="677" endy="604" />
</linepath>
- <floatingtext usesdiagramfillcolor="1" width="90" x="585" fillcolor="none" y="580" linewidth="none" posttext="" role="710" height="22" usefillcolor="1" pretext="+" isinstance="0" xmi.id="mpj5nWrVDR4b" text="conn_state" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="none" />
+ <floatingtext usesdiagramfillcolor="1" width="90" x="585" fillcolor="none" y="580" linewidth="none" posttext="" role="710" height="22" usefillcolor="1" pretext="+" isinstance="0" xmi.id="3zhDst7qIfwG" text="conn_state" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,0,50,0,0,0,0,0" linecolor="none" />
</assocwidget>
<assocwidget totalcounta="3" indexa="2" totalcountb="2" indexb="1" linewidth="none" widgetbid="oE5CCxttNgAF" widgetaid="Dd5IhQuqhODL" xmi.id="VqiqgPP0C8zY" type="510" linecolor="none" >
<linepath>
<startpoint startx="520" starty="787" />
<endpoint endx="600" endy="858" />
</linepath>
- <floatingtext usesdiagramfillcolor="1" width="16" x="500" fillcolor="none" y="790" linewidth="none" posttext="" role="701" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="SZm4shKiwA3K" text="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,5,50,0,0,0,0,0" linecolor="none" />
- <floatingtext usesdiagramfillcolor="1" width="16" x="597" fillcolor="none" y="833" linewidth="none" posttext="" role="702" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="t9bay5Lks2pd" text="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,5,50,0,0,0,0,0" linecolor="none" />
+ <floatingtext usesdiagramfillcolor="1" width="16" x="500" fillcolor="none" y="790" linewidth="none" posttext="" role="701" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="CGG3dQsycgqG" text="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,5,50,0,0,0,0,0" linecolor="none" />
+ <floatingtext usesdiagramfillcolor="1" width="16" x="597" fillcolor="none" y="833" linewidth="none" posttext="" role="702" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="eoJUAIqBFXN5" text="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,5,50,0,0,0,0,0" linecolor="none" />
</assocwidget>
<assocwidget totalcounta="2" indexa="1" totalcountb="2" indexb="1" linewidth="none" widgetbid="SwQGxd6xVixe" widgetaid="d8mKKcTJhtMZ" xmi.id="hTFpkGG8AM5T" type="510" linecolor="none" >
<linepath>
<startpoint startx="162" starty="445" />
<endpoint endx="162" endy="420" />
</linepath>
- <floatingtext usesdiagramfillcolor="1" width="16" x="335" fillcolor="none" y="645" linewidth="none" posttext="" role="701" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="Ye8l3DLVk7Za" text="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,5,50,0,0,0,0,0" linecolor="none" />
- <floatingtext usesdiagramfillcolor="1" width="16" x="164" fillcolor="none" y="422" linewidth="none" posttext="" role="702" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="msIj2J1tQdTO" text="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,5,50,0,0,0,0,0" linecolor="none" />
+ <floatingtext usesdiagramfillcolor="1" width="16" x="335" fillcolor="none" y="645" linewidth="none" posttext="" role="701" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="PUvh9qwL4CNh" text="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,5,50,0,0,0,0,0" linecolor="none" />
+ <floatingtext usesdiagramfillcolor="1" width="16" x="164" fillcolor="none" y="422" linewidth="none" posttext="" role="702" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="cDeCtUSVGmzO" text="1" usesdiagramusefillcolor="1" font="Sans Serif,10,-1,5,50,0,0,0,0,0" linecolor="none" />
</assocwidget>
<assocwidget totalcounta="3" indexa="1" totalcountb="2" indexb="1" linewidth="none" widgetbid="ySeTGJOMEmYM" widgetaid="Ffpcevz092To" xmi.id="REz0iVtn4vkj" type="512" linecolor="none" >
<linepath>
@@ -944,7 +977,7 @@ It manages the order and return the most prior connection" isSpecification="fals
<assocwidget totalcounta="3" indexa="2" totalcountb="3" indexb="1" linewidth="none" widgetbid="xnGQ9ti6LKXZ" widgetaid="Ffpcevz092To" xmi.id="iYWkSGRVz8hL" type="512" linecolor="none" >
<linepath>
<startpoint startx="542" starty="229" />
- <endpoint endx="574" endy="175" />
+ <endpoint endx="597" endy="193" />
</linepath>
</assocwidget>
<assocwidget totalcounta="2" indexa="1" totalcountb="2" indexb="1" linewidth="none" widgetbid="adjwEdq884ob" widgetaid="Ffpcevz092To" xmi.id="AnXqp1nebv8V" type="510" linecolor="none" >
@@ -953,6 +986,12 @@ It manages the order and return the most prior connection" isSpecification="fals
<endpoint endx="490" endy="402" />
</linepath>
</assocwidget>
+ <assocwidget totalcounta="2" indexa="1" totalcountb="2" indexb="1" linewidth="none" widgetbid="pEl1C68UjFRR" widgetaid="Ffpcevz092To" xmi.id="F2c5R39MF9xW" type="512" linecolor="none" >
+ <linepath>
+ <startpoint startx="646" starty="301" />
+ <endpoint endx="680" endy="289" />
+ </linepath>
+ </assocwidget>
</associations>
</diagram>
</diagrams>
@@ -976,7 +1015,7 @@ It manages the order and return the most prior connection" isSpecification="fals
</UML:Model>
</XMI.content>
<XMI.extensions xmi.extender="umbrello" >
- <docsettings viewid="xd1PHMGXFtVt" documentation="" uniqueid="l4MAtt7XrtF1" />
+ <docsettings viewid="niq745CwWtmB" documentation="" uniqueid="9SlYSZ6hs32a" />
<listview>
<listitem open="1" type="800" label="Views" >
<listitem open="1" type="801" id="Logical View" >
@@ -988,7 +1027,7 @@ It manages the order and return the most prior connection" isSpecification="fals
<listitem open="0" type="814" id="7MBbDW5Dfddz" />
<listitem open="0" type="814" id="rWKEXa4Lo7W0" />
</listitem>
- <listitem open="1" type="813" id="ySeTGJOMEmYM" >
+ <listitem open="0" type="813" id="ySeTGJOMEmYM" >
<listitem open="0" type="815" id="QNnsMczV4BbV" />
<listitem open="0" type="815" id="4Jl61qfG7FdR" />
<listitem open="0" type="815" id="kWAzj2FfLSzz" />
@@ -1029,6 +1068,7 @@ It manages the order and return the most prior connection" isSpecification="fals
<listitem open="0" type="815" id="qDTUjKdqN9vB" />
<listitem open="0" type="815" id="87can2qUN1d3" />
<listitem open="0" type="815" id="CX7QmGnNQfyu" />
+ <listitem open="0" type="815" id="8VFn5SRIJtio" />
</listitem>
<listitem open="0" type="813" id="Q60RU8Qxt2jh" >
<listitem open="0" type="814" id="BCj7uWVLsuTg" />
@@ -1110,6 +1150,7 @@ It manages the order and return the most prior connection" isSpecification="fals
<listitem open="0" type="810" id="ok2jsyqCdw9J" label="cco_action_cc_link_rel_req" />
<listitem open="0" type="810" id="0erZURpXzgym" label="cco_action_cc_link_sqz_req_rx_not_valid" />
<listitem open="0" type="810" id="So6DeCWo8dXw" label="cco_action_cc_link_sqz_req_rx_valid" />
+ <listitem open="0" type="810" id="WTr0EIIjIoGN" label="cco_action_cc_link_sqz_req_tx" />
</listitem>
<listitem open="1" type="830" id="Datatypes" >
<listitem open="1" type="829" id="irUbdfzRtLuy" />
@@ -1144,7 +1185,7 @@ It manages the order and return the most prior connection" isSpecification="fals
<listitem open="1" type="829" id="C4WJsNrZpU0N" />
<listitem open="1" type="829" id="HSMJS6CQrwCI" />
</listitem>
- <listitem open="1" type="831" id="mtZJnRKOO7ZU" >
+ <listitem open="0" type="831" id="mtZJnRKOO7ZU" >
<listitem open="0" type="839" id="OX2HniyXbXoO" />
<listitem open="0" type="839" id="neVJeoamoZ5F" />
<listitem open="0" type="839" id="cqyEfU3313Im" />
diff --git a/cesar/cp2/cco/action/doc/cco_conn/doc/class_diag_cco_conn.png b/cesar/cp2/cco/action/doc/cco_conn/doc/class_diag_cco_conn.png
deleted file mode 100644
index c1c31e02a5..0000000000
--- a/cesar/cp2/cco/action/doc/cco_conn/doc/class_diag_cco_conn.png
+++ /dev/null
Binary files differ
diff --git a/cesar/cp2/cco/action/doc/cco_conn/inc/cco_action.h b/cesar/cp2/cco/action/doc/cco_conn/inc/cco_action.h
new file mode 100644
index 0000000000..6339a8bd9e
--- /dev/null
+++ b/cesar/cp2/cco/action/doc/cco_conn/inc/cco_action.h
@@ -0,0 +1,45 @@
+#ifndef cp_cco_action_private_h.h
+#define cp_cco_action_private_h.h
+/* Cesar project {{{
+ *
+ * Copyright (C) 2008 Spidcom
+ *
+ * <<<Licence>>>
+ *
+ * }}} */
+/**
+ * \file inc/cp_cco_action_private.h
+ * \brief « brief description »
+ * \ingroup « module »
+ *
+ * « long description »
+ */
+
+/**
+ * - Functions reacting to incoming MME related to global connection.
+ * - Treatment of those MME - Storage and validation of the global connections
+ * - Control of the Bandwidth Manager's actions - React to the connections'
+ * states to send IND or CNF MME
+ */
+struct cp_cco_action_private_t
+{
+ /** Public data. */
+ cp_cco_action_t public_data;
+
+
+};
+typedef struct cp_cco_action_private_t cp_cco_action_private_t;
+
+/**
+ * Function called after any allocation (complete schedule or single connection
+ * allocation) Study the state of the connections and send the MME related
+ * to those states.
+ * \param ctx the module context.
+ * \param ctx Control Plane Context
+ *
+ * After sending those MMEs it clears the status.
+ */
+void
+cp_cco_action_mme_conn_cnf (cp_cco_action_t *ctx, cp_t* ctx);
+
+#endif /* cp_cco_action_private_h */