aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
7 daysDirectly invoke SO15.0.3Fiete Ostkamp5-62/+75
- adjust SO urls - adjust SDC and SO clients to correctly work with tracing Issue-ID: USECASEUI-884 Change-Id: Idf0e0319cba66cd976b16ff16f48a3988dc28d12 Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
9 daysRename other Retrofit clientsFiete Ostkamp30-582/+578
- complete the renaming from Retrofit service to client Issue-ID: USECASEUI-882 Change-Id: I20a961059b143311f9d8fd14565178eac9b6806a Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
2025-02-26Directly invoke the AAIFiete Ostkamp10-170/+193
- correct all AAI urls - use v29 api version for all AAI endpoints - make aai api version configurable via uui-server.client.aai.apiVersion Issue-ID: USECASEUI-881 Change-Id: I95be774b4d272d5dd833b3752bef227ab65f1e67 Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
2025-02-20Rename AAI related retrofit classes to clientsFiete Ostkamp23-195/+191
- this is done to better differentiate between Retrofit generated classes and the services that contain business logic - bump snapshot version to 15.0.3-SNAPSHOT [0] [0] this skips the 15.0.2-SNAPSHOT version to resolve the mismatch between the published docker version (i.e 15.0.1-STAGING-20250217T085742Z) and the version we are releasing this under (15.0.2) Issue-ID: USECASEUI-879 Change-Id: I22e6ec1ffecc072f2c3c9d97959dc52f43b2256b Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
2025-02-18Add missing sdc propertyFiete Ostkamp6-24/+24
- add uui-server.client.sdc.baseUrl property to application.properties Issue-ID: USECASEUI-877 Change-Id: I8d0eb17d3a5011c93d908226bbbe094a146a33a6 Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
2025-02-17server add 15.0.2-container.yamlkaixiliu1-0/+10
Issue-ID: USECASEUI-873 Change-Id: I9ed9a9a9c8f9a7923eddb501afc83ea3cccaf1fe Signed-off-by: kaixiliu <liukaixi@chinamobile.com>
2025-02-17Merge "Dependency inject Retrofit client for KpiSliceService"Keguang He8-34/+115
2025-02-17Merge "Add tracing for uui-server"Keguang He4-26/+22
2025-02-14Add tracing for uui-server15.0.2Fiete Ostkamp4-26/+22
- define tracing dependencies - use test scope for wiremock dependency - align application.properties file with the version in the OOM chart [0] [0] this includes removing ssl related properties and files since they are not used anymore Issue-ID: USECASEUI-872 Change-Id: I6089dd4573940b8313b8ff421b5f89291422c5c1 Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
2025-02-14Rename AAIService to AAIClientFiete Ostkamp18-403/+378
- rename AAIService to AAIClient - this is done to better differentiate between Retrofit generated classes and the services that contain business logic Issue-ID: USECASEUI-870 Change-Id: I5164fa73b151bdea38b7267351e1e3da16992d89 Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
2025-02-14Dependency inject Retrofit client for KpiSliceServiceFiete Ostkamp9-34/+116
Issue-ID: USECASEUI-866 Change-Id: Idd566841686bdacb5c64727530451e2c138f661e Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
2025-02-12Consistently use @RequiredArgsConstructorFiete Ostkamp16-313/+166
- make services final - create constructor via @RequiredArgsConstructor Issue-ID: USECASEUI-868 Change-Id: I50153496b59395240bd70bb99310183a9a12b12a Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
2025-02-11Dependency inject Retrofit client for SDCCatalogServiceFiete Ostkamp11-289/+543
- same as the rest of this service - define *ClientProperties to have autocompletion and property validation in application.properties Issue-ID: USECASEUI-862 Change-Id: Ie8c58470ca5977d82ad9e0468b3cfbedc32e6e63 Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
2025-02-07Dependency inject Retrofit client for IntentInstanceServiceFiete Ostkamp17-255/+485
- split up IntantApiService into IntentAai- and IntentSoService to be able to configure their headers centrally (like it is done for the rest of the changes of this series) - bump snapshot version to 15.0.1 Issue-ID: USECASEUI-861 Change-Id: I55662ff8dbb1e46f3fdd235852064268866a088f Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
2025-02-07Merge "Dependency inject Retrofit client for SlicingService"Keguang He18-387/+557
2025-01-24Dependency inject Retrofit client for SlicingServiceFiete Ostkamp18-387/+557
- same change as previous commit for SlicingService related classes - make slicing attributes configurable via application.properties Issue-ID: USECASEUI-859 Change-Id: Ie7f56a346520d796f9f1ff6fd9ec481f84956925 Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
2025-01-24usecase-ui/server add 15.0.1-container.yamlkaixiliu1-0/+10
Issue-ID: USECASEUI-860 Change-Id: I73c4b67371bf8d7e59d83d5513e9b5acbf759596 Signed-off-by: kaixiliu <liukaixi@chinamobile.com>
2025-01-21Dependency inject Retrofit client to simplify api declaration15.0.1Fiete Ostkamp8-385/+257
- centrally declare AAI rest client [0] - add integration test to assert http request to AAI - do not ignore test failure [0] this has the advantage, that - headers are defined for all requests via interceptor - this is the correct setup to add tracing to the app with a later change - credentials for AAI can be centrally configured (it is now configurable in the latest AAI version) Issue-ID: USECASEUI-857 Change-Id: I5ef0e859e3bc2ab4b42fe6ed27632c211b90ac62 Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
2025-01-17Clean up dependencies in uui-serverFiete Ostkamp3-87/+83
- remove msb-java-sdk since msb is not used in the java code (and it has lots of outdated transient dependencies) - change scope of junit, mockito and powermock dependencies to test - do not pin spring framework version as it is already managed by spring-boot dependency management [0] - replace spring-boot-starter-data-rest with -web since the former bundles the latter and actually nothing of -data-rest is used in the codebase - update jacoco plugin to be compatible with Java 17 [0] defining a separate version also bears the risk of incompatability between the two Issue-ID: USECASEUI-855 Change-Id: I0c236f3eec35fac07e8f5969d4d8f654fc10c068 Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
2024-12-31usecase-ui/server add 15.0.0-container.yamlkaixiliu1-0/+10
Issue-ID: USECASEUI-849 Change-Id: I7b7ab8cd733688e378bd4657d4a3f58f15855e3f Signed-off-by: kaixiliu <liukaixi@chinamobile.com>
2024-12-25usecase-ui/server updates pom.xml file and Change the release version to 15.0.015.0.0kaixiliu5-7/+7
Issue-ID: USECASEUI-845 Change-Id: I4d960162e45e1f82e0e4f91d1862bec7d001d69a Signed-off-by: kaixiliu <liukaixi@chinamobile.com>
2024-08-06server updates the vulnerable direct dependencieskaixiliu1-1/+1
Issue-ID: USECASEUI-840 Change-Id: Ic4c8e2d1a3f164845779d67dfc1c170b8cd69fcb Signed-off-by: kaixiliu <liukaixi@chinamobile.com>
2024-07-26server adds checkstyle configurationkaixiliu6-0/+467
Issue-ID: USECASEUI-839 Change-Id: Ifd43f2b2d8e793378c220e349ee5756520759bbf Signed-off-by: kaixiliu <liukaixi@chinamobile.com>
2024-07-23Remove oparent dependency from serverkaixiliu1-14/+4
Issue-ID: USECASEUI-839 Change-Id: I5a43770d37f4000ef8e4badbed837a1fcbdd2f2e Signed-off-by: kaixiliu <liukaixi@chinamobile.com>
2024-06-13Merge "server add container.yaml"Keguang He1-0/+10
2024-06-13server add container.yamlkaixiliu1-0/+10
Issue-ID: USECASEUI-838 Change-Id: I1306a4f54aa3b0f07e10cae2bdc79c3ea1cd2049 Signed-off-by: kaixiliu <liukaixi@chinamobile.com>
2024-06-13add exportContentzhen12343-0/+26
Issue-ID: USECASEUI-837 Signed-off-by: zhen1234 <liz779@chinatelecom.cn> Change-Id: I8d374024e5592e039182c82c573480c6d264d625
2024-06-13add exportUtil14.0.0zhen12341-0/+68
Issue-ID: USECASEUI-837 Signed-off-by: zhen1234 <liz779@chinatelecom.cn> Change-Id: I3547c3884b3e19fdfe4d94da63a02c5069363a06
2024-06-13modify pom dependencyzhen12341-1/+15
Issue-ID: USECASEUI-837 Signed-off-by: zhen1234 <liz779@chinatelecom.cn> Change-Id: Ie249d13365556625c75377cefe820a22269e498b
2024-06-12Modify pom fileskaixiliu4-5/+5
Issue-ID: USECASEUI-838 Change-Id: I61d8db246275b6c500a04baff36ba1dccca3c9e2 Signed-off-by: kaixiliu <liukaixi@chinamobile.com>
2024-06-11Component upgradenewdelhikaixiliu2-7/+14
Issue-ID: USECASEUI-836 Change-Id: I25a4f10d4e80d0fadb212d5d7abdd3ba4720d3e9 Signed-off-by: kaixiliu <liukaixi@chinamobile.com>
2023-11-23Modify Unit Testskaixiliu11-260/+196
Issue-ID: USECASEUI-828 Change-Id: I0ed5e53e6f3211bbeab74c6814475889933d73dc Signed-off-by: kaixiliu <liukaixi@chinamobile.com>
2023-11-21Change the release version to 13.0.0kaixiliu4-6/+6
Issue-ID: USECASEUI-828 Change-Id: Iccd70156e25b837bee6f4534981c5bfe412472aa Signed-off-by: kaixiliu <liukaixi@chinamobile.com>
2023-11-13Upgrade java 17kaixiliu178-2203/+597
Issue-ID: USECASEUI-823 Change-Id: I935b08e9221b1dc17aa16d573efe5e3757609d3b Signed-off-by: kaixiliu <liukaixi@chinamobile.com>
2023-06-25Change the release version to 5.3.0kaixiliu4-5/+5
Issue-ID: USECASEUI-816 Signed-off-by: kaixiliu <liukaixi@chinamobile.com> Change-Id: Ic40180414179cc4895848360ea4fab1d45f087d1
2023-06-14Update the version of server to 5.2.2kaixiliu1-0/+10
Issue-ID: USECASEUI-812 Signed-off-by: kaixiliu <liukaixi@chinamobile.com> Change-Id: I3c813a40e0667619a9d3e5377fbd9d204825c0f7
2023-06-14Delete extra blank lines5.2.2kaixiliu1-8/+6
Issue-ID: USECASEUI-812 Signed-off-by: kaixiliu <liukaixi@chinamobile.com> Change-Id: I44b3f92a5b5b51e03b61106214e92fb44f36af65
2023-05-09Enable uui-server support Http requestskaixiliu1-3/+1
Issue-ID: USECASEUI-808 Signed-off-by: kaixiliu <liukaixi@chinamobile.com> Change-Id: I46679f284444b9f52d5df90a1600069aec9c3ff9
2023-04-27Update the version of server to 5.2.1kaixiliu1-0/+10
Issue-ID: REQ-1442 Signed-off-by: kaixiliu <liukaixi@chinamobile.com> Change-Id: Id31bc794c5de3db74ded9091b04033a3beda91b6
2023-04-27Update the version of server to 5.1.3kaixiliu1-0/+10
Issue-ID: REQ-1442 Signed-off-by: kaixiliu <liukaixi@chinamobile.com> Change-Id: Ida7ba332d37a833a5d85be9b6db5b074d8505d85
2023-04-27Add Comment5.2.1kaixiliu1-0/+1
Issue-ID: REQ-1442 Signed-off-by: kaixiliu <liukaixi@chinamobile.com> Change-Id: I44774bea50c3d9992f5d1186c5e0ff1e3f252b07
2022-11-04Merge "Release version change"Keguang He3-3/+3
2022-11-04Release version changeJunyi3-3/+3
Signed-off-by: Junyi Du <hunterdevil@foxmail.com> Issue-ID: USECASEUI-759 Change-Id: I4894ba94f832904cb903708c20d5ad3c9fa740b3
2022-11-04modify fashjson convert bean to stringcmrizhangzhen1-1/+1
Issue-ID: USECASEUI-750 Signed-off-by: cmrizhangzhen <781953240@qq.com> Change-Id: I150319c7aec5092e1347c7c611e09d237abf5d28
2022-10-28Fixed bugs found in KPI Monitoring for new KPIdeepikasatheesh6-78/+71
Issue-ID: USECASEUI-748 Signed-off-by: deepikasatheesh <deepika.s84@wipro.com> Change-Id: Ie545852cc39d11fbfc4a950a1576188aabbf5dc0 Signed-off-by: deepikasatheesh <deepika.s84@wipro.com>
2022-10-27Release 5.1.2.hekeguang1-0/+10
Issue-ID: USECASEUI-743 Change-Id: I06d3fff5a525ffc7f74c314764f31a4011e6964b Signed-off-by: hekeguang <hekeguang@chinamobile.com>
2022-10-24feat:Intent instance binding 5g slice instance information5.1.2’zhaoyh6‘2-1/+37
Issue-ID: REQ-1214 Signed-off-by: ’zhaoyh6‘ <zhaoyh6@asiainfo.com> Change-Id: I49062d260bec07259d04a63b43de57581b3c0c8a
2022-09-29Update version to 5.1.1.hekeguang1-0/+10
Issue-ID: USECASEUI-732 Change-Id: I15bd746297da521af5b7eb49698ec5c94861258a Signed-off-by: hekeguang <hekeguang@chinamobile.com>
2022-09-29add bash config5.1.1Junyi1-1/+1
Issue-ID: USECASEUI-731 Signed-off-by: Junyi Du <hunterdevil@foxmail.com> Change-Id: I948681459d58d0228a3f3ef72809543d0c8b2ebf
2022-09-23Update UUI version to 5.1.0.hekeguang1-0/+10
Issue-ID: USECASEUI-731 Change-Id: I02202e24aa749f412dd11ea2e54f3122e29f594e Signed-off-by: hekeguang <hekeguang@chinamobile.com>