From 4a106d3cf7ef0ac4e98ae80a10affaee25a4c6ef Mon Sep 17 00:00:00 2001 From: Xiuchao Wu Date: Tue, 27 Sep 2016 15:42:46 +0100 Subject: [PATCH] add icons needed by topology rendering, add code for loading data from overlay micro-services, and show more details when a node is clicked. Change-Id: I15335650d77aba6ac7fd1b5ab19c6bef94026d9c Signed-off-by: Xiuchao Wu --- .../webapp/lifecyclemgr/images/topo/License.txt | 362 +++++++++++++++++++++ .../webapp/lifecyclemgr/images/topo/NEDOWN.png | Bin 0 -> 2354 bytes .../lifecyclemgr/images/topo/NEDOWN_selected.png | Bin 0 -> 2351 bytes .../webapp/lifecyclemgr/images/topo/NETWORK.png | Bin 0 -> 3347 bytes .../lifecyclemgr/images/topo/NETWORK_EDGE.png | Bin 0 -> 3076 bytes .../lifecyclemgr/images/topo/NETWORK_selected.png | Bin 0 -> 3347 bytes .../main/webapp/lifecyclemgr/images/topo/NEUP.png | Bin 0 -> 2823 bytes .../lifecyclemgr/images/topo/NEUP_selected.png | Bin 0 -> 2485 bytes .../main/webapp/lifecyclemgr/images/topo/OTHER.png | Bin 0 -> 2823 bytes .../webapp/lifecyclemgr/images/topo/OTHER_0.png | Bin 0 -> 2551 bytes .../lifecyclemgr/images/topo/OTHER_0_selected.png | Bin 0 -> 2108 bytes .../webapp/lifecyclemgr/images/topo/OTHER_1.png | Bin 0 -> 2619 bytes .../lifecyclemgr/images/topo/OTHER_1_selected.png | Bin 0 -> 2318 bytes .../webapp/lifecyclemgr/images/topo/OTHER_2.png | Bin 0 -> 2615 bytes .../lifecyclemgr/images/topo/OTHER_2_selected.png | Bin 0 -> 2335 bytes .../webapp/lifecyclemgr/images/topo/OTHER_3.png | Bin 0 -> 2842 bytes .../lifecyclemgr/images/topo/OTHER_3_selected.png | Bin 0 -> 2514 bytes .../lifecyclemgr/images/topo/OTHER_selected.png | Bin 0 -> 2485 bytes .../main/webapp/lifecyclemgr/images/topo/cloud.png | Bin 0 -> 2239 bytes .../webapp/lifecyclemgr/images/topo/cloudroute.png | Bin 0 -> 16526 bytes .../lifecyclemgr/images/topo/crossSubnet.png | Bin 0 -> 1093 bytes .../lifecyclemgr/images/topo/delete_asbr.png | Bin 0 -> 1315 bytes .../webapp/lifecyclemgr/images/topo/mark_sink.png | Bin 0 -> 1998 bytes .../lifecyclemgr/images/topo/mark_source.png | Bin 0 -> 2069 bytes .../lifecyclemgr/images/topo/networkdown.png | Bin 0 -> 3694 bytes .../webapp/lifecyclemgr/images/topo/node_gray.png | Bin 0 -> 17990 bytes .../webapp/lifecyclemgr/images/topo/node_green.png | Bin 0 -> 17995 bytes .../webapp/lifecyclemgr/images/topo/node_red.png | Bin 0 -> 17992 bytes .../webapp/lifecyclemgr/images/topo/router.png | Bin 0 -> 2823 bytes .../lifecyclemgr/images/topo/router_selected.png | Bin 0 -> 2485 bytes .../main/webapp/lifecyclemgr/images/topo/site.png | Bin 0 -> 2301 bytes .../lifecyclemgr/images/topo/siteIcon_feature.png | Bin 0 -> 1222 bytes .../lifecyclemgr/images/topo/site_selected.png | Bin 0 -> 1898 bytes .../webapp/lifecyclemgr/images/topo/sitedown.png | Bin 0 -> 2291 bytes .../lifecyclemgr/images/topo/sitedown_selected.png | Bin 0 -> 1888 bytes .../main/webapp/lifecyclemgr/images/topo/u1963.png | Bin 0 -> 238 bytes .../src/main/webapp/lifecyclemgr/js/topo/Node.js | 7 +- .../webapp/lifecyclemgr/js/topo/OverlayTopology.js | 147 ++++++--- .../main/webapp/lifecyclemgr/overlayvpn_topo.html | 6 - 39 files changed, 478 insertions(+), 44 deletions(-) create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/License.txt create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/NEDOWN.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/NEDOWN_selected.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/NETWORK.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/NETWORK_EDGE.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/NETWORK_selected.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/NEUP.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/NEUP_selected.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/OTHER.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/OTHER_0.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/OTHER_0_selected.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/OTHER_1.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/OTHER_1_selected.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/OTHER_2.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/OTHER_2_selected.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/OTHER_3.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/OTHER_3_selected.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/OTHER_selected.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/cloud.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/cloudroute.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/crossSubnet.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/delete_asbr.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/mark_sink.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/mark_source.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/networkdown.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/node_gray.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/node_green.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/node_red.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/router.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/router_selected.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/site.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/siteIcon_feature.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/site_selected.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/sitedown.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/sitedown_selected.png create mode 100644 openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/u1963.png diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/License.txt b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/License.txt new file mode 100644 index 00000000..8e698ecb --- /dev/null +++ b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/License.txt @@ -0,0 +1,362 @@ +THIS LICENSE FILE CONTAINS THE LICENSE APPLICABLE DEPENDING ON THE TYPE OF CONTRIBUTIONS. + +APACHE LICENSE 2 IS APPLICABLE FOR SOURCE CODE, CREATIVE COMMONS ATTRIBUTION 4.0 INTERNATIONAL FOR DOCUMENTATION + ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + + +Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. + +Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. + +Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. + +You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of this License; and You must cause any modified files to carry prominent notices stating that You changed the files; and You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +5. Submission of Contributions. + +Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. + +This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. + +Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. + +In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. + +While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + +Attribution 4.0 International + +https://creativecommons.org/licenses/by/4.0/legalcode + +Creative Commons Corporation ("Creative Commons") is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an "as-is" basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible. + +Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and conditions that creators and other rights holders may use to share original works of authorship and other material subject to copyright and certain other rights specified in the public license below. The following considerations are for informational purposes only, are not exhaustive, and do not form part of our licenses. + + Considerations for licensors: Our public licenses are + intended for use by those authorized to give the public + permission to use material in ways otherwise restricted by + copyright and certain other rights. Our licenses are + irrevocable. Licensors should read and understand the terms + and conditions of the license they choose before applying it. + Licensors should also secure all rights necessary before + applying our licenses so that the public can reuse the + material as expected. Licensors should clearly mark any + material not subject to the license. This includes other CC- + licensed material, or material used under an exception or + limitation to copyright. More considerations for licensors: + wiki.creativecommons.org/Considerations_for_licensors + Considerations for the public: By using one of our public + licenses, a licensor grants the public permission to use the + licensed material under specified terms and conditions. If + the licensor's permission is not necessary for any reason--for + example, because of any applicable exception or limitation to + copyright--then that use is not regulated by the license. Our + licenses grant only permissions under copyright and certain + other rights that a licensor has authority to grant. Use of + the licensed material may still be restricted for other + reasons, including because others have copyright or other + rights in the material. A licensor may make special requests, + such as asking that all changes be marked or described. + Although not required by our licenses, you are encouraged to + respect those requests where reasonable. More_considerations + for the public: + wiki.creativecommons.org/Considerations_for_licensees +Creative Commons Attribution 4.0 International Public License + +By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. + + +Section 1 -- Definitions. + + a. Adapted Material means material subject to Copyright and Similar + Rights that is derived from or based upon the Licensed Material + and in which the Licensed Material is translated, altered, + arranged, transformed, or otherwise modified in a manner requiring + permission under the Copyright and Similar Rights held by the + Licensor. For purposes of this Public License, where the Licensed + Material is a musical work, performance, or sound recording, + Adapted Material is always produced where the Licensed Material is + synched in timed relation with a moving image. + b. Adapter's License means the license You apply to Your Copyright + and Similar Rights in Your contributions to Adapted Material in + accordance with the terms and conditions of this Public License. + c. Copyright and Similar Rights means copyright and/or similar rights + closely related to copyright including, without limitation, + performance, broadcast, sound recording, and Sui Generis Database + Rights, without regard to how the rights are labeled or + categorized. For purposes of this Public License, the rights + specified in Section 2(b)(1)-(2) are not Copyright and Similar + Rights. + d. Effective Technological Measures means those measures that, in the + absence of proper authority, may not be circumvented under laws + fulfilling obligations under Article 11 of the WIPO Copyright + Treaty adopted on December 20, 1996, and/or similar international + agreements. + e. Exceptions and Limitations means fair use, fair dealing, and/or + any other exception or limitation to Copyright and Similar Rights + that applies to Your use of the Licensed Material. + f. Licensed Material means the artistic or literary work, database, + or other material to which the Licensor applied this Public + License. + g. Licensed Rights means the rights granted to You subject to the + terms and conditions of this Public License, which are limited to + all Copyright and Similar Rights that apply to Your use of the + Licensed Material and that the Licensor has authority to license. + h. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + i. Share means to provide material to the public by any means or + process that requires permission under the Licensed Rights, such + as reproduction, public display, public performance, distribution, + dissemination, communication, or importation, and to make material + available to the public including in ways that members of the + public may access the material from a place and at a time + individually chosen by them. + j. Sui Generis Database Rights means rights other than copyright + resulting from Directive 96/9/EC of the European Parliament and of + the Council of 11 March 1996 on the legal protection of databases, + as amended and/or succeeded, as well as other essentially + equivalent rights anywhere in the world. + k. You means the individual or entity exercising the Licensed Rights + under this Public License. Your has a corresponding meaning. + +Section 2 -- Scope. + + a. License grant. + 1. Subject to the terms and conditions of this Public License, + the Licensor hereby grants You a worldwide, royalty-free, + non-sublicensable, non-exclusive, irrevocable license to + exercise the Licensed Rights in the Licensed Material to: + a. reproduce and Share the Licensed Material, in whole or + in part; and + b. produce, reproduce, and Share Adapted Material. + 2. Exceptions and Limitations. For the avoidance of doubt, where + Exceptions and Limitations apply to Your use, this Public + License does not apply, and You do not need to comply with + its terms and conditions. + 3. Term. The term of this Public License is specified in Section + 6(a). + 4. Media and formats; technical modifications allowed. The + Licensor authorizes You to exercise the Licensed Rights in + all media and formats whether now known or hereafter created, + and to make technical modifications necessary to do so. The + Licensor waives and/or agrees not to assert any right or + authority to forbid You from making technical modifications + necessary to exercise the Licensed Rights, including + technical modifications necessary to circumvent Effective + Technological Measures. For purposes of this Public License, + simply making modifications authorized by this Section 2(a) + (4) never produces Adapted Material. + 5. Downstream recipients. + a. Offer from the Licensor -- Licensed Material. Every + recipient of the Licensed Material automatically + receives an offer from the Licensor to exercise the + Licensed Rights under the terms and conditions of this + Public License. + b. No downstream restrictions. You may not offer or impose + any additional or different terms or conditions on, or + apply any Effective Technological Measures to, the + Licensed Material if doing so restricts exercise of the + Licensed Rights by any recipient of the Licensed + Material. + 6. No endorsement. Nothing in this Public License constitutes or + may be construed as permission to assert or imply that You + are, or that Your use of the Licensed Material is, connected + with, or sponsored, endorsed, or granted official status by, + the Licensor or others designated to receive attribution as + provided in Section 3(a)(1)(A)(i). + b. Other rights. + 1. Moral rights, such as the right of integrity, are not + licensed under this Public License, nor are publicity, + privacy, and/or other similar personality rights; however, to + the extent possible, the Licensor waives and/or agrees not to + assert any such rights held by the Licensor to the limited + extent necessary to allow You to exercise the Licensed + Rights, but not otherwise. + 2. Patent and trademark rights are not licensed under this + Public License. + 3. To the extent possible, the Licensor waives any right to + collect royalties from You for the exercise of the Licensed + Rights, whether directly or through a collecting society + under any voluntary or waivable statutory or compulsory + licensing scheme. In all other cases the Licensor expressly + reserves any right to collect such royalties. + +Section 3 -- License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the following conditions. + + a. Attribution. + 1. If You Share the Licensed Material (including in modified + form), You must: + a. retain the following if it is supplied by the Licensor + with the Licensed Material: + i. identification of the creator(s) of the Licensed + Material and any others designated to receive + attribution, in any reasonable manner requested by + the Licensor (including by pseudonym if + designated); + ii. a copyright notice; + iii. a notice that refers to this Public License; + iv. a notice that refers to the disclaimer of + warranties; + v. a URI or hyperlink to the Licensed Material to the + extent reasonably practicable; + b. indicate if You modified the Licensed Material and + retain an indication of any previous modifications; and + c. indicate the Licensed Material is licensed under this + Public License, and include the text of, or the URI or + hyperlink to, this Public License. + 2. You may satisfy the conditions in Section 3(a)(1) in any + reasonable manner based on the medium, means, and context in + which You Share the Licensed Material. For example, it may be + reasonable to satisfy the conditions by providing a URI or + hyperlink to a resource that includes the required + information. + 3. If requested by the Licensor, You must remove any of the + information required by Section 3(a)(1)(A) to the extent + reasonably practicable. + 4. If You Share Adapted Material You produce, the Adapter's + License You apply must not prevent recipients of the Adapted + Material from complying with this Public License. + +Section 4 -- Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material: + + a. for the avoidance of doubt, Section 2(a)(1) grants You the right + to extract, reuse, reproduce, and Share all or a substantial + portion of the contents of the database; + b. if You include all or a substantial portion of the database + contents in a database in which You have Sui Generis Database + Rights, then the database in which You have Sui Generis Database + Rights (but not its individual contents) is Adapted Material; and + c. You must comply with the conditions in Section 3(a) if You Share + all or a substantial portion of the contents of the database. +For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights. + + +Section 5 -- Disclaimer of Warranties and Limitation of Liability. + + a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. + b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. + c. The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability. + +Section 6 -- Term and Termination. + + a. This Public License applies for the term of the Copyright and + Similar Rights licensed here. However, if You fail to comply with + this Public License, then Your rights under this Public License + terminate automatically. + b. Where Your right to use the Licensed Material has terminated under + Section 6(a), it reinstates: + 1. automatically as of the date the violation is cured, provided + it is cured within 30 days of Your discovery of the + violation; or + 2. upon express reinstatement by the Licensor. + For the avoidance of doubt, this Section 6(b) does not affect any + right the Licensor may have to seek remedies for Your violations + of this Public License. + c. For the avoidance of doubt, the Licensor may also offer the + Licensed Material under separate terms or conditions or stop + distributing the Licensed Material at any time; however, doing so + will not terminate this Public License. + d. Sections 1, 5, 6, 7, and 8 survive termination of this Public + License. + +Section 7 -- Other Terms and Conditions. + + a. The Licensor shall not be bound by any additional or different + terms or conditions communicated by You unless expressly agreed. + b. Any arrangements, understandings, or agreements regarding the + Licensed Material not stated herein are separate from and + independent of the terms and conditions of this Public License. + +Section 8 -- Interpretation. + + a. For the avoidance of doubt, this Public License does not, and + shall not be interpreted to, reduce, limit, restrict, or impose + conditions on any use of the Licensed Material that could lawfully + be made without permission under this Public License. + b. To the extent possible, if any provision of this Public License is + deemed unenforceable, it shall be automatically reformed to the + minimum extent necessary to make it enforceable. If the provision + cannot be reformed, it shall be severed from this Public License + without affecting the enforceability of the remaining terms and + conditions. + c. No term or condition of this Public License will be waived and no + failure to comply consented to unless expressly agreed to by the + Licensor. + d. Nothing in this Public License constitutes or may be interpreted + as a limitation upon, or waiver of, any privileges and immunities + that apply to the Licensor or You, including from the legal + processes of any jurisdiction or authority. +Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the "Licensor." The text of the Creative Commons public licenses is dedicated to the public domain under the CC0 Public Domain Dedication. Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at creativecommons.org/policies, Creative Commons does not authorize the use of the trademark "Creative Commons" or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. + +Creative Commons may be contacted at creativecommons.org. \ No newline at end of file diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/NEDOWN.png b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/NEDOWN.png new file mode 100644 index 0000000000000000000000000000000000000000..a9bbe5e810258bc4500296994b1bf4be3db96a01 GIT binary patch literal 2354 zcmbVOeLPh88Xp&#@>2B5Se?d}TIS`dZs{GgH^U%IOBE+beg(#B7XS>hXLMS>m zN~Mz12!w=$1bhM+4=cn3kV>WMbdX3mL;|PWCQ}L2IGNIRRs$PS3KbH$N&?FOokl?f z9H*jV5l=sdAeDQ2e^D$`&Lj#+89^xO-Wz(_98@xy&qET67Ck~70LMAet zIF2C5pn@!p3zg`?1W9Bvn>nlFYgl(Onc_@jaTpXP6$Cks3=Y$oNda9PoyiE(p|qAv9}Og4mtGvi}lGV<{kk3RVQbaLjB6_(s7hSQ!P&0hT`nSRE*liQoj~8eMrl zN6Us3l6Xkuu7IV$r~J|+U$O5@W|JvoCY#D)P;_xqnT`||hl+#^Qb1=C6+43!{XaP) zAkGkU&GA3YGRs0bP9G7g+FDKeI(=7)|~berx#^eb{p-h4WM&eWE+nHVboctF?tm!46Yi zT}oHNlc1f$*<;K}u5Ga9m!!8{XNNUPzHAe~J$m%$RWu?0|tafQ;W@bf2#R9X5i3tl*&D>&*X0Ks&ZLPMo)y8ZO z%b^RM-rjZdCP=5_;?u7*t@Y7M*q`~B7q3zQc6J^=@Vp!rpwWC@`NE!_9-qO5+Lm+Y zOd9+5y?GO#pPxU{ADKl@Zyst)OG|6~j(WcL=EQR89itsjQc~Wbii(Pu0vLWCj9zA0 zI)C!`%?|bYji%lGrKP3))z#ItJTK+?@K@Y{x90mmO>2EUn1A@Nwz9I5SXS`ok~AZi zx7Eu!hyGdV3!lFD=d_-^z5V#q`;oD+eVV(g!PduXVq`Lkit<`ue6r|y9?hh8;Be`) zo`iIoQmMS!)s=1IxVw9!=DPpJxum4*?}d?(?p{yJ&rrs1>n~-7_T{Fu(rt1cGSLy& zM>cAHc3sThJuLp1Yjwk+@!!N(!LHLded(=3HX}vWS66yv1s7U|&gmVk8Wf}71rF|b zW-XV+D9VuH$57*!mQ47P!nF_H>qFRh2X5W?DZ>z zm$-d%Xern__OVrK0-d%qKj3O`ZglZoURC)4#)mcv7UQO#pHn}2B**Xl_GGhGt^W#E z@EEt<=xlD@rAs{f2@Ah-gkLU9^C~UApZGSKcQwzLn&BF`%hylhYX0JZ(5ptBB@Vc~ ztka<7AK$+2rW?-LwjpEjK%ezo!*iqQCEPLN@A{k%nomi8onQ3Q=(1th{d*<1w*Z>D z$$s?WF88b{H&0GOL12SFkk?>i7#p|4)GEL2#S?TMMsNC$fnA~RkreK#g>zdlxt-(e z19``XOtqVmUp4Koo-Vv=!aUkT2ZxMzRfai~w-Hlmp_Zp+-@ zSMKb1A;S*;;ALdVXl-ruZoITTEq-A}VvI;+5E>fVoDsjGDaZKO+m!QV%R_PtlY5tk z4cv=(o7d-&e3qG5nK+!Bm$G!#LjJ*)3F4yci?4?-V}Sv`w5O?uLF>ZN^0Km90|P(y zj^lB-6^rJTo;=A-U{w92^4nroZZ-Zd%Y+*>>6xd9O+eDCXO*$NuOBMT<`x!a9654i zZG=Nt`kp~_jVHkO&qoV^P5`pHp{afE@Yif9o z+Qh5;br@5(#ojnv^NFa#t=AZs6>Rc4%!1R!7W-0cn!J)zJ-NZ%(?Kb|&iCP+Y{k!Y zbvr4i@7v>gYQs!Ae6y&$q?I_rAH4dF-RmWqST-*#mU(U~8K0pM=Zdv1^!HQ~v`VOv$ML literal 0 HcmV?d00001 diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/NEDOWN_selected.png b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/NEDOWN_selected.png new file mode 100644 index 0000000000000000000000000000000000000000..9fc5aaa38d9aec1ffba8e25296967bec19120143 GIT binary patch literal 2351 zcmbVMdpK0<8egsn)p1E=%a|l3GqYyKm>E=aW!#b`VJKr}VKTR7mS#v&E>TL6OWLRo zl6s_ev2DWMF?8W6l~eH?>5e){=@AqE5_gmRPf!+&@ zml^{Auz=&k3`S-r?JzP#zSUmCwaBES4ECl2wLL!#BZ7V`Er1397jsQ!_y&kPU+xp8 z1b~I@+M!e6vd|V$+Q6((c#|v!R`C@OKoiQMArwc#kA;FEzA$meb;uI{^kPKZP&hQe zpDK_^Fnp~IMlF#eXaMkBr^uyzXlZ=5QJjL z6cEY{LvR(~KoCVDVL+lAi3F}e;c*}yi$h+LD@dfek*Iig)VBwXcvA>tsKHG3H(!Y4 zg^q(^ITedlsZB^(U>8O9H-mE1%*gbjw2 zvIKX9g*i+wG_r#ciiA`OgW$$u(8&ZG z&5cC_K^g^Qu*eh~nGWI!1SWls<40IFfx&PmfMgnpP60s{k;bCC(@7wi=uTj;Xyor$ zj#LTrr2=TquL$w`4eS1wSSmvS@nM;QE0c-mIv^-c2FsLjGC7K|iG*_AB9aPaD&;Ee z@qEpe2`NN7At75Klc2uTmn!;!e|G|tKqAnY6b6l?&6`3ek{B!sk~T;J-SHIkH>~jg zsTmdt2CHq3|7n&v71Dv)<@eS{gzuLJk|H-ofm{s{u3`xQ7`SqnG;XMOcjzvE9%Q-B z^~y2b=byGG?#y|qQH#^&f9xdo;AY1PisOhSaWkFmanVHZ&c7SxgE72hNA^r-v2{6! z`L+9K;h~{A14GO3tuD~>jVCMZf}AJIatBTnrc5<8)ctLP@@{`htFq^9*>vgq(zlz^ zDSOFKlEnJF-yTN&xvkv0RV})#lJM#^=l1sAdqnmEoS&KV20vVT-ZZ$rCqgg~sLrS= zO!5h??CLFYv@(`m>n__Grg@g?nW>|$nF#O+sxFp0U2II%b8?kZK0nb|+m6%9BQP~9 zeb382Z!mha>FG}E3v?dOb~B4JJykL~&2Y$Qxw9l78r|nHJ5Sty_sQ-ty`jzCS8wO3 z*4|)q+haaG-5+TDFbZ{BRbgb-zu`lp$>+T_Id`KTJMAc;o_H{6Sk%_B;*g|r(fHfa z11@>7;k{Q9dPe zaini=e5$YUwn$;v!%L%GqXRCW``IO>Ky;+RA*4tRt=g8w zu)VQr(5~v*;IZ-`j^vHl*T81qsf6v%ZaeuM$yc-~OXqLLCYDmAL%$uo;Jr4rRGyWy z^4NtVCI*C=-cnWD$Z*w2eNpr86WOH){}AHA{<4vLc31B!J^{A>XoWE`T-hArye&z$ zw%X(ICrw~&{Da6AUEbEZfu-oF!>=*qyb$cGpL=$jn_FD2yF8@Z|7MjFWhBq??9sAf zzZAp9EoX|m7GoSU#?@nywbB5i)xYR8$#bnopSTUtZJooi4g7=2&NdfsRGD{iRv!S< z@0c7uv;O{dd{>`!RIj@ajvZ-tYp`5rx;1e8M4@TR$$5s;>_t}Knj=JTR+zhF(xSr+kz@sL$V=`#xvNy(@6>t^0~rudRp zyE~(<$gOLgQZ!s|)98)+_jE+6JdRUMKBnL?O&f1jZ=_3J{L3@jGN)}kljm$!TzR}C zIY?f972lk!7sB3I+dzO7jDM|sMQ$7`V;i42Xu0ZHo4rH( zRh!|yi1a0mc|lbkPO(<0X`}Q3MoL)dNQ}PQ4wDXFLCNI#@Wl;&H9#pf-}I^On~B_` z_fN}PHd{I97xcZP^L;Z?XSa#fN4x)taddLo;oTfYT|UjR*FVy?G<#Xi06e?U!CR9y zcJs1BeIkDu<4tT&$9u=~cK1)&54>xytWV5qS2OlX>_d}O{VzWmg-j?rF3>LduJnr} yUG#}plf^?MoAb5p$0iI^k9$oQP-3SN$TRkOV*iYE#RKHW2>={cAhVVpweP>N5w!0B literal 0 HcmV?d00001 diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/NETWORK.png b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/NETWORK.png new file mode 100644 index 0000000000000000000000000000000000000000..931dbe7be8d9f5ea5d2190b782780ccebcfa0b0c GIT binary patch literal 3347 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 literal 0 HcmV?d00001 diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/NETWORK_EDGE.png b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/NETWORK_EDGE.png new file mode 100644 index 0000000000000000000000000000000000000000..779bdd484ffb7b2952710d9067e0c67c5abe156b GIT binary patch literal 3076 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 literal 0 HcmV?d00001 diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/NEUP.png b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/NEUP.png new file mode 100644 index 0000000000000000000000000000000000000000..b82ea857430c529e1179a13fca3bede5fcf94fb7 GIT binary patch literal 2823 zcmbVOc{o&iA0H%JH>8+KnFd)dvlwQ~FlrVqCJg44EZxS;U@%KFV=E;^ldXnqmxz$N zNQ2b0S#GjMg_0#(gNW#6x#^8}bgTFM<39I~_dMsE-}e1{zWaGjBH8ta?^JiF0sw&T zoE(WBvT^VFqr6e}{uw(}Ase;}?7an^oIpV&mB#?!=$rrs$caS_Vt6p9^ys6l3|jy| zA&^P&7I?cHz|c4>2z6Zs62;=m&;Wq#z9=r07RnHS0vJI|HWoa0w+;+q(y`!!RxU6X zE`brubUemmcph`5(2j-D&~)%VJCJP@Mn=G52&kYaRv4R)iNbNSeVNs%=yu50X52;&Da0R zKxFV~JSJDbC zcrgBJ#@|ZwDbZX8)Puq2g!5>!d<5!$1a9kfVW1#a8~w~a5xSPC)it~Vb*xK1p-0Df93c)tOJ5TKq26kI3yko zhud4??C~f(5^imYLJ;h6*59yBY`%cXrZK+iWyB|=1nuo!bbqr6| z8q*q!SO7o?{&~wK`sLnZT{mdHHODN{6c*~wVJu%Jg_ z+kA|S%J$2eM$}3l85sc}k;o%#b|+?WanZ@f#-?<3cD6b%gV_{D$`SCT7v`VRa;x#Xn-5t=pEClLJij zg9ytMyIhbh+UdzVQ*-p%F1Wk92MWdtkS!bgzP@$HciBo*fSoRMh)jXiu^$%tBxu+<~&4;>_ z7E9rlS%P`ci=iY^NSRw07UQNgVj2H+vBJ-HHI4zdy&HS zp1rXDa8A*EUd2kwxd^^zySrO{!cU9mkX`neXwB1-5niW3fHMk(s`#V&U&DzvmG0W9 zzmeak=&6NRI^6Bv8Gj@Y9Czz#8BWyB*UcA7mNr1#1*VgdJ9l_CL&3GyTQ7Blfx_@9 z6(^Et8U_bWDoG1M|@;?2>juDtZPm7*-qBb1O3| zt8-6)TvJuT&4Q*PMnkDux=Hw~RykI9Ta?OPNOKsDTQQwM17eN{ncRzuGn&|&D zyuEUw;8^jy3|nQ*i=K85&-AqI%Doe^zq?oU<8{uT!}cRHXrGpm2Uo_qb$7M*+B~Aq zj8uzPInl2rX)!FnERrV1=^AJv8fTYwiZ1D0d+)MGOIu~O zcl2=3wtJVa6CZlK^HUA_NhvP*{#39L$t2ePMt)#x&V!lhxl>IQAx}B(7rjzVY@Qv# z%-|1|0l_b`@ezx*FZXDKi=&j~FFg=u;l}`F?AX>t2EuQmA?AY4?Rb&er|u^y&jQYO z&gS@^01l~PHdwrI@>3dE77MoX-!NDUD zB{9D`7Y7)LTqi@;@>h4kOXSHFJ}4e2eY zH+0K09!g41)=JIZ8ig8%c70rI)tJj~3`~c?UOY~TSg46>>^Xf~*@(1Vjnv=$Q}iT2 z_xfPRInS;f?P$5H7!!xL2WxgzRaH@P%v`(oCJ8Iw4iF5p_FN_DQ;Q~ljx@#(zOWiecRrN@l?BMYM*+p{~Uq{e&UQHZ<825G(Ib=mWU_j66n z&B+sVf8hI@I(x-}eho_nkMB|bn;nd*O7Bt|4|lVZd*;hEk5leWArJ`PmaEPAjLI1~KITdVjnhz*8k(88BwP)b&xeRLN!nTRQSa&MOXQlXe z^Q7W=Tnl_YBFApRxkX7~<+p49rNd3w6XrID2CUHG)&X%OS^nYRrDK?pyz1=Jq__HW4 zkJNrk*NI^}&3erAi7Xe9$o1Z~yS|rwD@-8}NW($Jbd1%|M|gkAsCB55v5ojGfA{Q| ztEB?&f@`N|sYlINXxl}JL;=@ecPA6~@D2I7H5#o5ygg0-MXh5qi#_^lHAOOAl1}SXUq JtiT^R{U7z0%Y6U< literal 0 HcmV?d00001 diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/NEUP_selected.png b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/NEUP_selected.png new file mode 100644 index 0000000000000000000000000000000000000000..65f0dc8d292249eef17e8f7a49b5ee789d51fd97 GIT binary patch literal 2485 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 JtiT^R{U7z0%Y6U< literal 0 HcmV?d00001 diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/OTHER_0.png b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/OTHER_0.png new file mode 100644 index 0000000000000000000000000000000000000000..2099f02f40f447f5aedffde5fbcb7e437dafaa3e GIT binary patch literal 2551 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 literal 0 HcmV?d00001 diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/OTHER_0_selected.png b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/OTHER_0_selected.png new file mode 100644 index 0000000000000000000000000000000000000000..5a0cf7377f10a1045ff27e1d2be242f8c36de4b0 GIT binary patch literal 2108 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 a`(g3MUC$4??=aQ;p*XYLnAhq16aNE3an(2g literal 0 HcmV?d00001 diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/OTHER_2.png b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/OTHER_2.png new file mode 100644 index 0000000000000000000000000000000000000000..c947de267067c0992796e9160a2f39ce3d708bbf GIT binary patch literal 2615 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 literal 0 HcmV?d00001 diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/OTHER_3.png b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/OTHER_3.png new file mode 100644 index 0000000000000000000000000000000000000000..1a3f560cd3c07b7233f163491861eafc0d893e44 GIT binary patch literal 2842 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 literal 0 HcmV?d00001 diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/OTHER_3_selected.png b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/OTHER_3_selected.png new file mode 100644 index 0000000000000000000000000000000000000000..e00bf6dfdaa2a06beaac540402ae9d1cac83c5e7 GIT binary patch literal 2514 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 U&*s4GHxJ{%E)~X&m)hO+Kgu{%d;kCd literal 0 HcmV?d00001 diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/delete_asbr.png b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/delete_asbr.png new file mode 100644 index 0000000000000000000000000000000000000000..f9a06bd501a84ed3a04a2c2a1c57850067dbe508 GIT binary patch literal 1315 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|$r9IylHmNblJdl&R0hYC{G?O` z&)mfH)S%SFl*+=BsWuD@%nF$y5hW46K32*3xq68pHF_1f1wh>l3^w)^1&PVosU-?Y zsp*+{wo31J?^jaDOtDo8H}y5}EpSfF$n>ZxN)4{^3rViZPPR-@vbR&PsjvbXkegbP zs8ErclUHn2VXFi-*9yo63F|8Mv>2~2MaLa!lCy`Y4UTL84#CABECEH%ZgC_h&L>|v`+oNh64#c3W? zZwgMg7`frps}FRHJ}6p|q8TOxOgkVZJkbI<@MNEw2Tbclz(hTx!}zdpiY+{HyV7ZgzV2=)r>r0xVtvB2EvVEqd3~Y+>DPVewo1hW!JfEh_|AomjSY zHd}VCUC8IAc;#o!_m{s5Ie$NB{(f%n^WD$y6rcP0_sQoA529uW&*SuObw3n-v~R=v zvJX33k`6^bWc_!{AwtAYw>dF-$>-CIO5gTQ&r@_O(ziMI@WDOnr@MudtQ3!Lb9f-I zal)s&TuW_VPVsWs%g54OJ^Ma?$Z7|bMc&4_D_&VBcOGxd5Lt2cThdgn2|i3uH|cGX zS^X{T=}zXknuji@8zRH@4dTSU7X8db!yzEy{3DV&b&A! z)V1>F&+{Du@`prD=l60fw^%LqPkGYTIEKStO_r48_p`p0!os})uf4#WD-Lq7(x&!+8Q!L5+Ip08A+hRDpUdS zR(cVEDiI687F2W<1*`bf>q5nXqGDMo^-^h3w5Tlhua^WXD;96yzhI?`ObN! zL=nGelJ`t+001V%%3vk&B@@p)Pj})SB74WVF$0$@!xOP|+^ROCfDpmbP%ze@)}l&O zjpV$44&?*DYw3E`GJKglj;Fy46t&ZaVl$WsGyw3UZ6>uQ6UD(aRI4`%$oE=~lR-Tq zASbirG`UHP>h!W)Gn$wiuhQgZYPbkFdLhWS@dyF~imO4JA2fc)I4WpV{5#>^R2p%!qaY@a#pcmD;ERh) zsF{&;o)VV6&?066vJS^hJSx>{wNk7M3TD<)AugBeA( zS6W+CIVO~0aHTLq0?{Ez!W3~?3^6R` zvPDc-%4E?du(3u9t~P4W30*y*`vOa-{sopNHlu1BGpjHxYoY=aIt<4wI?M!$6WL&R zvfhYbR!fBQc%DZKqh@_Jib&0v0eqHUp8gg3A}(FTVL~uO|9^2m$0C0xXH>!&sGdD%Ruk?0sR(Hie=dq11#xbaw6sIpx3$8jzNnNGr#HZh z6@3p2Ru0t~ZvUL0`LLt?D5HhpF+Oj{y~=x|9ae$X)#|3(@8)Q5OmckcnCl2y`p9P_ z1iolKI64+M>c=h3Gpl^V9)ID6fb&sy5=U+CXl;l%~?TGI6NJ+lhOInDI* zq@#mh%w;|u-M2S#xLfx6ptRd!3_IBlY~MywZa}m4wCDR&-=v-RvH8lN=;oZbngE$^ zZ?0F@j$+-K4%Pzi8TN*)YnQIkrUGxepX%EgUZo8xqg=KG!%wo-j9u%T!~asV>G8Ug zp{L%x_EBBl(eOKtf>{k~P3oAJ&LN5fb1l++GuS&MzYHSmjDx2RlFP9ND-w#lR99m+`9l;U-k?V61q(3!Ud(_Kn#U@nJ; zL2xj%ET(xeP$fQXxxYwowfvm*@{(CAZc2NLSKOTuww3bjrCx+D!wz(JNkEL-b9nT0 z;Q}P@V8B_QZ&_nr)pZw7T+}6O=*x0_P)2s&v3I#19XycQw{xrAKGO>cNQ$T#YHf@z zI;M=kTMH{5NOV*E^H2`dQax;oIFV9%;X99AZ){7GH!_i6?XYYMb+&!=0QvEaPXenO zWAy7X4}aa$r}(G{eCxvRw?q=(i}u1VZ_RYGRh+3k7jnJg$@2aXuiu1MPdCM+6tLO? z>^IzMd|V`}hZjCV18=h)#BGVRb#*LqaGM_V$L}pT5Wx;$N4@tN zt+tT2VK&}sjvybeSLrJHh3zxe{vfT32haQ=bafdHJ~sdSGR!}j$VB{ExCF_hH!k>qwm}rNd>(Bv{6`{KHmf;?_a+na_|k|F=cOa z?118*D|5_XOUJ@TYZ5@DM`6{5*E#A`nKiYb)g>=}-@GS3wPe`mGid&ZZ&KJ#ou{&k wL(ARebE^D8e%@EJL=k;ObjYpuN;JtGC~EindRqH>it`T}D~X32MJo&b1WPXzK>z>% literal 0 HcmV?d00001 diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/mark_source.png b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/mark_source.png new file mode 100644 index 0000000000000000000000000000000000000000..30aa5bb4276861751ef3d51796595228d82b6cb2 GIT binary patch literal 2069 zcmbVNc~}!?9*z_cqR1gCmpX*1C?;WY!32UK2ZUlEK!gamB_snxm`uzJ5Q6#$Xa$R_ zRZ%I5$WeF@P%F?!S8#U`p$fukv}(0rtI#S(p;}xocA{eU54V5pJac@<`@X;Pd!|Sh z5o$+vBa=uZyD*6;n)p(P$H&H+crTX3n>So>u>y}lQ}Ar19wr5=(PS71LzJm-G^|wT zZ2A@sB#}N!(a06JLb{f#LJ^wMjG-A29l<7%0@oOHN>w_H1IcizM$4m&|Lp<=(5QKo zIJVSRsuRL#8i`R4#~35zDr33|Qd8Ch0f7cCA%MWR5-=bcT8wMpQQqisiLrT^P66IP z@N^#Kty2oA3=pDv7+}+wRFy9X0vrwvWU)CMa5cd21sQZ-;^t667MIQ8GW>vd7lp8< zSEq2JMIrBO5i=eo4aap{Iz2l(o0iR_q54!h2tklpgTbH@2r8DN#gzuC7W0}>5W$#A zuhHQeR126DmC0x(&Z7{Xz6}ACrHTX6jW$JyN`8$VBe`+>jYac*Bj2|`s^A&B8p7^7F8fcpT%jIT;;3GZq8T$CAWK7W6iY*OfG~ywc*kk9 zYBU>LX)e#(XhpDIlLf0o^e6(n$uC#)0s8`oA@E~?B9QUF;(p6j|35jS6VA}h&GBE& zGP6WihWpGT3^_?00?O=ivn5y8fNp{ELtI)cK#zXxv0S@MXB?cL(Mytg?!J zvhr3V*X3!kU|>ARaNjuVsp@I}#0lX`&8m7^Ra{bEqJ02MF=12CKe6Dq{gcOyo7fpF zL~gP=nRv2d<0*2v|FJ?b>-FqYjR7zF3-@Qvc?1s3$EqQn=9gvOkv>zehBuB5bxZxZ zI_JAg?GL;it3)mdz7EU;;~cna^Q+Bii8pMZua49$m%Ql9@-`+|4)6wYrWUzr4hWAl zq~_QZsJAT-k1;u@-JSgSRW**q`@YD&zAMmc+Ot3*gEv#%{@QSHbzwzV!3UAcpY@zAJ?~Q#>yYRC>kmhVj#jjk91a)71?4pi^K!ll>V|z`{uR5{0rTE@x%Cp>G9VjjzvyaZu#yt*F7GbeSG$3V<>=}ue};o3rX%N`0k^Y*Lre| zcX>(f-)O9ZT@&|?H16P+SBB)EH)>Z&W9>Twd4_oWI+W_=U|%0w-Q-$d1W86E$SKnV zXJh=;es51>0YM_sLGX7%IUPM98Gms< z>O4-zy0UxlRLw36%iGY+)=%pdyB`guL$ya`w-RjF9c;&5*XO-0_tTR`TdcqL4!BMA z9n5F{gC>Y*|NUZ*rF?7M_Pb+=X^YWybAx?OR@9PK1<9W!+k_w^9jmwMTXXFm>ZL!r zew^@`XUCyP*`yj&0PCm6dvN2C_6?;ZHxIl1hhyYUNn8l44clYM0PQkf>yP?Z2 z8SbyWzF^_^8i(=rGi}!DswKyVIy2m7RTRGrIVI4v1|DLB#`8f7XaSkxQHVYkkHXVZ zR@Tl9gMxSukGbyEdu9!X+5~sy*p@Agy5JHvva(*X>|&gWn^nFY;TQE*{9a`(=l3)2 z)mRGbY;M~xG<>3b^^*cPgT{`{b3+ ze_rsc>lS&_G~HoQy*y2~tBpTT)FDl|DEqDR{LYi8ScFuB3Ux&`;(c Nb(lCp)FepC{||A(GUfmP literal 0 HcmV?d00001 diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/networkdown.png b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/networkdown.png new file mode 100644 index 0000000000000000000000000000000000000000..98c6436084f7cd877c9d97cd46fd9b9062daa07e GIT binary patch literal 3694 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 literal 0 HcmV?d00001 diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/node_green.png b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/node_green.png new file mode 100644 index 0000000000000000000000000000000000000000..70e91f5e77cb54ed4f684af5eacb9d16262561e6 GIT binary patch literal 17995 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 plJ^1-Z literal 0 HcmV?d00001 diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/node_red.png b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/node_red.png new file mode 100644 index 0000000000000000000000000000000000000000..195df9292c07102fe3c6bb495b5aec6bcd041a5a GIT binary patch literal 17992 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

#o^!>1bTXyY5k_f8UK>Q z^QsLm^NAC?oTvGz4cgyzylPOlO!U{rpm+}?di?dPbh;ZVb>lCc?uJUIluk4XTOadv zG)VI_)%Z6tegdik@6ZV9^QH!Eg7&th1c6jn6AJIUf;C?AFq&UAP{%KYZod;wb9@y} zrqi^e-9(+3Y~>vsd1qGS_e1MXCFFah{ZD?Fn$dqUDkPR*5C{SY!yaHShApA`MF8+KVUI8u$5dNkB7k@qwuK*VW2!B(6i$5QTSAYuwguf}k#h(wv zE5HQ-!r$bJOKj>kP>{yE_mjiB$+Pv{j0gY_va&ESbTq$N=DeO3g__@?^2t+mME!C` ziHRI&h&;fIZWlcU3yF7CcJ)$Pz}cXAP)U68;)lBiRkp_jpD?gHnz?TVwqilcy5VJ_ zMpngAh|nU(b*8vtiEtV6LGaY7^^c3ryt!m;q2csMa}P&H`S`~AH zJ%@Tou`gw`D|(IoIkjRhdwcqBui3MT4V?Soi9MFWRi!uJnPMUK-N*bQv8}@^T8^n4 z^-3uIsBx#4JKz1jY+jzOsP}>7omW-5S7W2s>xf*t?yS`rvutMmoF}kb4@}Mu0XX8~ znHBZ64x(O()Qj|GqGEO%6LuJ}x2Oi^&c1J=yqn$mICH*ASD(W8t+y7Y)+TvIUXlL?8|mz3 literal 0 HcmV?d00001 diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/router.png b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/router.png new file mode 100644 index 0000000000000000000000000000000000000000..b82ea857430c529e1179a13fca3bede5fcf94fb7 GIT binary patch literal 2823 zcmbVOc{o&iA0H%JH>8+KnFd)dvlwQ~FlrVqCJg44EZxS;U@%KFV=E;^ldXnqmxz$N zNQ2b0S#GjMg_0#(gNW#6x#^8}bgTFM<39I~_dMsE-}e1{zWaGjBH8ta?^JiF0sw&T zoE(WBvT^VFqr6e}{uw(}Ase;}?7an^oIpV&mB#?!=$rrs$caS_Vt6p9^ys6l3|jy| zA&^P&7I?cHz|c4>2z6Zs62;=m&;Wq#z9=r07RnHS0vJI|HWoa0w+;+q(y`!!RxU6X zE`brubUemmcph`5(2j-D&~)%VJCJP@Mn=G52&kYaRv4R)iNbNSeVNs%=yu50X52;&Da0R zKxFV~JSJDbC zcrgBJ#@|ZwDbZX8)Puq2g!5>!d<5!$1a9kfVW1#a8~w~a5xSPC)it~Vb*xK1p-0Df93c)tOJ5TKq26kI3yko zhud4??C~f(5^imYLJ;h6*59yBY`%cXrZK+iWyB|=1nuo!bbqr6| z8q*q!SO7o?{&~wK`sLnZT{mdHHODN{6c*~wVJu%Jg_ z+kA|S%J$2eM$}3l85sc}k;o%#b|+?WanZ@f#-?<3cD6b%gV_{D$`SCT7v`VRa;x#Xn-5t=pEClLJij zg9ytMyIhbh+UdzVQ*-p%F1Wk92MWdtkS!bgzP@$HciBo*fSoRMh)jXiu^$%tBxu+<~&4;>_ z7E9rlS%P`ci=iY^NSRw07UQNgVj2H+vBJ-HHI4zdy&HS zp1rXDa8A*EUd2kwxd^^zySrO{!cU9mkX`neXwB1-5niW3fHMk(s`#V&U&DzvmG0W9 zzmeak=&6NRI^6Bv8Gj@Y9Czz#8BWyB*UcA7mNr1#1*VgdJ9l_CL&3GyTQ7Blfx_@9 z6(^Et8U_bWDoG1M|@;?2>juDtZPm7*-qBb1O3| zt8-6)TvJuT&4Q*PMnkDux=Hw~RykI9Ta?OPNOKsDTQQwM17eN{ncRzuGn&|&D zyuEUw;8^jy3|nQ*i=K85&-AqI%Doe^zq?oU<8{uT!}cRHXrGpm2Uo_qb$7M*+B~Aq zj8uzPInl2rX)!FnERrV1=^AJv8fTYwiZ1D0d+)MGOIu~O zcl2=3wtJVa6CZlK^HUA_NhvP*{#39L$t2ePMt)#x&V!lhxl>IQAx}B(7rjzVY@Qv# z%-|1|0l_b`@ezx*FZXDKi=&j~FFg=u;l}`F?AX>t2EuQmA?AY4?Rb&er|u^y&jQYO z&gS@^01l~PHdwrI@>3dE77MoX-!NDUD zB{9D`7Y7)LTqi@;@>h4kOXSHFJ}4e2eY zH+0K09!g41)=JIZ8ig8%c70rI)tJj~3`~c?UOY~TSg46>>^Xf~*@(1Vjnv=$Q}iT2 z_xfPRInS;f?P$5H7!!xL2WxgzRaH@P%v`(oCJ8Iw4iF5p_FN_DQ;Q~ljx@#(zOWiecRrN@l?BMYM*+p{~Uq{e&UQHZ<825G(Ib=mWU_j66n z&B+sVf8hI@I(x-}eho_nkMB|bn;nd*O7Bt|4|lVZd*;hEk5leWArJ`PmaEPAjLI1~KITdVjnhz*8k(88BwP)b&xeRLN!nTRQSa&MOXQlXe z^Q7W=Tnl_YBFApRxkX7~<+p49rNd3w6XrID2CUHG)&X%OS^nYRrDK?pyz1=Jq__HW4 zkJNrk*NI^}&3erAi7Xe9$o1Z~yS|rwD@-8}NW($Jbd1%|M|gkAsCB55v5ojGfA{Q| ztEB?&f@`N|sYlINXxl}JL;=@ecPA6~@D2I7H5#o5ygg0-MXh5qi#_^lHAOOAl1}SXUq JtiT^R{U7z0%Y6U< literal 0 HcmV?d00001 diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/router_selected.png b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/router_selected.png new file mode 100644 index 0000000000000000000000000000000000000000..65f0dc8d292249eef17e8f7a49b5ee789d51fd97 GIT binary patch literal 2485 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 Jr~H20{1+aA#xMW? literal 0 HcmV?d00001 diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/siteIcon_feature.png b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/siteIcon_feature.png new file mode 100644 index 0000000000000000000000000000000000000000..9ddf0a361f99fda3523e7461b25a06bf710439ad GIT binary patch literal 1222 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 Fz+X5J!a4u| literal 0 HcmV?d00001 diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/sitedown_selected.png b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/images/topo/sitedown_selected.png new file mode 100644 index 0000000000000000000000000000000000000000..2d5af8350c3c3dd8d6d30b7d988d5788e1028e3c GIT binary patch literal 1888 zcmaJ?c~BEq91h}*g4BTJ5Z9<6NKQyXA`z1;M^rKpLW!W2C0Rm*WMi_B00oDjj**C9 zETUAYpr!)iRX{|sc#BuX6j5pk-mQpMbVRY!Zd9~?lwiHp4AUlSnSE?~K4i_4xS3}Zt7zI*bxkAMuJZm{g02DF~A%PxEiB|LB zG(}X729C=SilsT}QkIMmwg3p#voQfBj6#53nW56M^&G-`T{bqiZ<7hYdkC7&A$)L3 z5*-8Z5e*E`NkK#@g-Qh&3=%b%&R|dj0UCu$BU7-KL8Jz==?pfF34DAAm^F$Hve+p~G z*=m?9g0)DdMv4_Kb(Y5o{omuG zquBzL7KKz&SO9Vem;yELq_D8&-A2M4pvM=-z^*(ZCBm2S_kxRy$A=?Z4 zuR;%RVclb&erj86@u~4)71r$Ws{WmU) zFk2ac7eq+{-)peW$b%EN zw>do@jT%=p`IE*66$F>KTqb4hb;lP(+A4NVGqHD0aP+WEku2=rwp2e(SlD8-R8N~E z^jtD(TAP~-IJs#|N9P#_OfUSB z4HKrztEvPJc+S+;G|#Sz#qBvSTlN)LnH#groRCp93oBy1)7vsEZI*Q_3j!Tx0v)?2 zT+ip1pC+#Bxp>8|;hpbaM0TXL2YEv6JXoytb8^D9^gT46iYs$X<~qcM4oNl?Y`Kzj z5xEuM*|igXwr_{c)2U)k#i6H-9UToPR}SP>Z6bnZ$0)%H`JeO?XRh89;@La4xYZI{ zEt%lSd`Se&|7=#ZYi#j-iy_3ltlo0uk9&!t15)NTS8jgcsepFD{`%Q)FQN9}=Gxt@ zdHan`^DZ~<8K_w@v*(DIl>3}B_ttMy^XZd)B0ajwxa;nW;m0i;*e}R>xu`I9L+GQ* z!+m4-eXFBXp1PoZVR|@}WLmTQZ_`}J*~58y!=SM8r)3%8m0QiwqXoL5loY7o*qTgT z>Fu}N3Ms$y)~+}B)vId{oVaqg$oNWDQfSIC*U-XTn_0PFYlkoMfXJNrb3^zPugLb} z;HEE%Vpp!ROjxuO?)a)3)J-1L>F z`K%c+Zzbgu10)8#X_nuc;{BbgOOE_#C zRc#NOUo?Ny;X~eVS28rG@w7Rl$KU(q=A%Bw_?p-KhOK=&d-?MnI{m4nmYnW50+Zw7 zn^q-XJgKSw{9wzYi^qp(&W6^gr0nWP)^ggVwY5TF>ytJWv!*nnxvqsQux9UheD?vx zuP516Q5Ixdb~ul9`2pTCnCN*b!}n8kL8OMxv-C0%h1L(*N=CdPus1jY;weg>{X+zpP_i?i$um1MPdzl=?pQaBpW`bt6W|uw`2Fz4d)spUQCFye(V1` lgSFyr{#$lN0k%U2_&B%dD1Hy!{uSr}22WQ%mvv4FO#n~;ST_Iw literal 0 HcmV?d00001 diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/topo/Node.js b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/topo/Node.js index 8215c3c5..efb80b03 100644 --- a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/topo/Node.js +++ b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/topo/Node.js @@ -16,11 +16,16 @@ var icon = { device_icon : "images/topo/NEUP.png", sfc_device_icon : "images/topo/OTHER_3.png", + site_icon : "images/topo/site.png", network_icon : "images/topo/NETWORK.png" } -function Node(id, label, size, type, x, y) { + +/* when node is clicked, details will be displayed in the label. */ +function Node(id, label, details, size, type, x, y) { this.id = id; this.label = label; + this.brief = label; + this.details = details; this.type = "square"; this.x = x; this.y = y; diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/topo/OverlayTopology.js b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/topo/OverlayTopology.js index 7c35c38a..6b4fd1eb 100644 --- a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/topo/OverlayTopology.js +++ b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/topo/OverlayTopology.js @@ -13,6 +13,10 @@ * limitations under the License. */ +/* overlay micro-service API URL. We might use Maven filter feature to replace with the real address when generating the war package. */ +const REQUEST_URL_PER_OVERLAY_VPN = "http://localhost:8080/org.openo.sdno.overlayvpnservice/openoapi/sdnooverlayvpn/v1/site2dc-vpn/"; + +/* extract Overlay VPN ID from query string of request URL. */ function extractOverlayVPNId() { var parameters = location.search.substring(1).split("&"); @@ -22,8 +26,35 @@ function extractOverlayVPNId() return id; } -function Topology(containerId) { +/* load overlay vpn instance data from overlay micro-service and display its topology. */ +function loadOverlayData(vpn_id) { + var requestUrl = REQUEST_URL_PER_OVERLAY_VPN.concat(vpn_id); + $ + .ajax({ + type: "GET", + url: requestUrl, + contentType: "application/json", + success: function (jsonobj) { + init_topo(jsonobj); + }, + error: function (xhr, ajaxOptions, thrownError) { + alert("Error on getting Overlayvpn data : " + xhr.responseText); + + //the following lines are used to test w/o overlay micro-service. + //var vpn_info = createMockVpnInfo(); + //init_topo(vpn_info); + } + }); +} +/* a function that mock overlay micro-service response based on API for testing purpose only.*/ +function createMockVpnInfo(vpn_id) { + var vpnObj = '{"name":"Overlay VPN 1","description":"One VPN connect site to DC.","site":{"cidr":"10.10.0.0/16","thinCpeId":"thincpe-1234-5678","portAndVlan":"port12vlan13","vCPEId":"vcpe-2222-5555"},"vpc":{"name":"VPC 1","site":{"name":"subnet 1","cidr":"172.18.0.0/16","vni":"vni-1234-9999"}},"sfp":{"scfNeId":"scfneid-1234-5678","servicePathHop":[{"hopNumber":"hopNumber-111111","sfiId":"sfiId-333333","sfgId":"sfgId-444444"}]}}'; + return JSON.parse(vpnObj); +} + +/* definition of Topology */ +function Topology(containerId) { /** * IMPORTANT: This only works with the canvas renderer. TBD in the future * will also support the WebGL renderer. @@ -48,71 +79,113 @@ function Topology(containerId) { edgeLabelSize : 'proportional' } }); + this.addNode = addNode; this.addEdge = addEdge; } - function addNode(node) { - this.s.graph.addNode(node); - } - function addEdge(edge) { this.s.graph.addEdge(edge); } -function init() { - var node1 = new Node("1", "ThinCPE", 16, "device_icon", 0.1, 0.5); - var node2 = new Node("2", "vCPE", 16, "device_icon", 0.4, 0.5); - var node3 = new Node("3", "GW", 16, "device_icon", 0.8, 0.5); +/* get details to be displayed when site or vpc node is clicked. Note that more details may be added if it is appropriate. */ +function getSiteDetails(vpn_info) { + var siteCidr = vpn_info.site.cidr; + return "Site CIDR: ".concat(siteCidr); +} +function getVPCDetails(vpn_info) { + var vpcCidr = vpn_info.vpc.site.cidr; + return "VPC CIDR: ".concat(vpcCidr);; +} - var node6 = new Node("6", "FW", 8, "sfc_device_icon", 0.85, 0.4); - var node7 = new Node("7", "LB", 8, "sfc_device_icon", 0.9, 0.3); - var node8 = new Node("8", "VPC", 48, "network_icon", 1.05, 0.4); - - var node4 = new Node("4", "vFW", 8, "sfc_device_icon", 0.32, 0.35); - var node5 = new Node("5", "vLB", 8, "sfc_device_icon", 0.48, 0.35); +/** create topology of overlay vpn with instance data. + * Note that the layout/topology is hard-coded. In the future, this function may be moved to BRS/MSS + * that can understand NSD, calculate layout, fill with instance information, and return the final JSON string expected by sigma for rendering. + */ +function createNodesAndEdgesForOverlayVPN(topology, vpn_info) { + var siteNode = new Node("site", "Site", getSiteDetails(vpn_info), 48, "site_icon", 0.1, 0.65); + var thinCPENode = new Node("thinCPE", "ThinCPE", "ThinCPE ID: ".concat(vpn_info.site.thinCpeId), 16, "device_icon", 0.1, 0.5); + var vCPENode = new Node("vCPE", "vCPE", "vCPE ID: ".concat(vpn_info.site.vCPEId), 16, "device_icon", 0.4, 0.5); + var gwNode = new Node("gw", "GW", "GW", 16, "device_icon", 0.8, 0.5); - var edge1 = new Edge("e1", "VxLAN", "1", "2", 0.5, "blue"); - var edge2 = new Edge("e2", "IPSec", "2", "3", 0.5, "green"); + var fwNode = new Node("fw", "FW", "FW", 8, "sfc_device_icon", 0.8, 0.4); + var lbNode = new Node("lb", "LB", "LB", 8, "sfc_device_icon", 0.8, 0.3); + var vpcNode = new Node("vpc", "VPC", getVPCDetails(vpn_info), 48, "network_icon", 1.0, 0.3); + var vfwNode = new Node("vfw", "vFW", "vFW", 8, "sfc_device_icon", 0.32, 0.35); + var vlbNode = new Node("vlb", "vLB", "vLB", 8, "sfc_device_icon", 0.48, 0.35); - var edge3 = new Edge("e3", "", "2", "4", 0.5, "grey"); - var edge4 = new Edge("e4", "", "4", "5", 0.5, "grey"); - var edge5 = new Edge("e5", "", "5", "2", 0.5, "grey"); + var edge0 = new Edge("e0", "", "site", "thinCPE", 0.5, "black"); + var edge1 = new Edge("e1", "VxLAN", "thinCPE", "vCPE", 0.5, "blue"); + var edge2 = new Edge("e2", "IPSec", "vCPE", "gw", 0.5, "green"); - var edge6 = new Edge("e6", "", "3", "6", 0.5, "grey"); - var edge7 = new Edge("e7", "", "6", "7", 0.5, "grey"); - var edge8 = new Edge("e8", "", "7", "8", 0.5, "grey"); + var edge3 = new Edge("e3", "", "vCPE", "vfw", 0.5, "grey"); + var edge4 = new Edge("e4", "", "vfw", "vlb", 0.5, "grey"); + var edge5 = new Edge("e5", "", "vlb", "vCPE", 0.5, "grey"); - var topology = new Topology("container"); + var edge6 = new Edge("e6", "", "gw", "fw", 0.5, "grey"); + var edge7 = new Edge("e7", "", "fw", "lb", 0.5, "grey"); + var edge8 = new Edge("e8", "", "lb", "vpc", 0.5, "grey"); - topology.addNode(node1); - topology.addNode(node2); - topology.addNode(node3); - topology.addNode(node4); - topology.addNode(node5); - topology.addNode(node6); - topology.addNode(node7); - topology.addNode(node8); - + topology.addNode(siteNode); + topology.addNode(thinCPENode); + topology.addNode(vCPENode); + topology.addNode(gwNode); + topology.addNode(fwNode); + topology.addNode(lbNode); + topology.addNode(vpcNode); + topology.addNode(vfwNode); + topology.addNode(vlbNode); + + topology.addEdge(edge0); topology.addEdge(edge1); topology.addEdge(edge2); topology.addEdge(edge3); topology.addEdge(edge4); topology.addEdge(edge5); - topology.addEdge(edge6); topology.addEdge(edge7); topology.addEdge(edge8); - - +} + + +/* create and show the topology based on overlay vpn instance data. */ +function init_topo(vpn_info) { + var topology = new Topology("container"); + createNodesAndEdgesForOverlayVPN(topology, vpn_info); CustomShapes.init(topology.s); topology.s.refresh(); + + //show details when a node is clicked + topology.s.bind('clickNode', function(e) { + console.log(e.type, e.data.node.label, e.data.captor); + var nodeId = e.data.node.id; + topology.s.graph.nodes().forEach(function(n) { + if (n.id == nodeId) + n.label = n.details; + }); + topology.s.refresh(); + }); + topology.s.bind('clickStage', function(e) { + console.log(e.type, e.data.edge, e.data.captor); + topology.s.graph.nodes().forEach(function(n) { + n.label = n.brief; + }); + topology.s.refresh(); + }); } +/* code to be run when loading the page */ $(document).ready(function() { - init(); + var vpn_id = extractOverlayVPNId(); + + //load overlay vpn instance data and show its topology. + loadOverlayData(vpn_id); + + //insert overlay VPN id into the title. + var titleStr = "Topology of Overlay VPN : ".concat("", vpn_id, ""); + document.getElementById("title").innerHTML = titleStr; }); \ No newline at end of file diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/overlayvpn_topo.html b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/overlayvpn_topo.html index b6167b19..74ab12ee 100644 --- a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/overlayvpn_topo.html +++ b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/overlayvpn_topo.html @@ -50,12 +50,6 @@ - - \ No newline at end of file -- 2.16.6