summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2020-04-23Fix import in FsToDbTemplateSynchronizer1.0.0edyta1-1/+1
Issue-ID: INT-1517 Signed-off-by: Edyta Krukowska <edyta.krukowska@nokia.com> Change-Id: Icc383992dac2392ee1bbb5352aec202c087c2457
2020-04-23Add synchronize TestCase FsToDbTemplateSynchronizeredyta1-0/+53
Issue-ID: INT-1517 Signed-off-by: Edyta Krukowska <edyta.krukowska@nokia.com> Change-Id: I11c4006ec1ec14a5af38b19bd4bf66dcfa80bbbe
2020-04-22Merge "Add SonarQube local starter"Krzysztof Kuzmicki10-2/+111
2020-04-22Add SonarQube local starterBogumil Zebek10-2/+111
In README_SONAR.md you can find how to configure and run SonarQube locally. Issue-ID: INT-1517 Signed-off-by: Zebek Bogumil <bogumil.zebek@nokia.com> Change-Id: Ic5daa070e56cd28bd18b8f8f8abcbb793005cf3a
2020-04-22Merge "Fix sonar issue KeywordsHandler RuntimeException"Bogumil Zebek2-4/+34
2020-04-22Merge "Fix sonar issue SimulatorController"Bogumil Zebek1-2/+10
2020-04-22Fix sonar issue KeywordsHandler RuntimeExceptionedyta2-4/+34
Issue-ID: INT-1517 Signed-off-by: Edyta Krukowska <edyta.krukowska@nokia.com> Change-Id: Ib862d81a6ab3b26cfeebc2f9175ed6b6f061706c
2020-04-22Fix sonar issue SimulatorControllerAleksandra Maciaga1-2/+10
Issue-ID: INT-1517 Signed-off-by: Aleksandra Maciaga <aleksandra.maciaga@nokia.com> Change-Id: I7af9529be268cb40922868ee62e3318509166287
2020-04-22Merge "Add EventData missing toString test"Bogumil Zebek1-11/+2
2020-04-22Add EventData missing toString testedyta1-11/+2
Issue-ID: INT-1517 Signed-off-by: Edyta Krukowska <edyta.krukowska@nokia.com> Change-Id: I93f9947081a239725c2c3808aef61a663df3383c
2020-04-22Merge "Update java to version 11"Bogumil Zebek6-10/+10
2020-04-22Merge "Created test for TwoParameterKeyword class"Bogumil Zebek1-0/+48
2020-04-21Merge "Provide the parametrized type for this generic"Bogumil Zebek2-12/+12
2020-04-21Merge "Remove deprecated method"Krzysztof Kuzmicki1-3/+8
2020-04-21Provide the parametrized type for this genericAleksandra Maciaga2-12/+12
Issue-ID: INT-1517 Signed-off-by: Aleksandra Maciaga <aleksandra.maciaga@nokia.com> Change-Id: I9e40d3cc8b6a71afd05ed027b71a1a7474a388a8
2020-04-21Remove deprecated methodBogumil Zebek1-3/+8
Once deprecated, classes, and interfaces, and their members should be avoided, rather than used, inherited or extended. Deprecation is a warning that the class or interface has been superseded, and will eventually be removed. The deprecation period allows you to make a smooth transition away from the aging, soon-to-be-retired technology. Issue-ID: INT-1517 Signed-off-by: Zebek Bogumil <bogumil.zebek@nokia.com> Change-Id: I985959d614c6f2544b0515ed52d6343f194e4720
2020-04-21Fix sonar issue FsToDbTemplateSynchronizeredyta1-7/+7
Issue-ID: INT-1517 Signed-off-by: Edyta Krukowska <edyta.krukowska@nokia.com> Change-Id: Iaa4ec60c00d186feb225244969c12993dfdf5569
2020-04-21Created test for TwoParameterKeyword classMichal Banka1-0/+48
Change-Id: Iab819e485be2bfdb49cda7d2b83c7a37cdf48e30 Signed-off-by: Michal Banka <michal.banka@nokia.com> Issue-ID: INT-1517
2020-04-21Merge "Fix sonar issue NetconfMessageListenerTest"Bogumil Zebek1-0/+2
2020-04-21Merge "Fix checkstyle warnings in netconf simulator"Bogumil Zebek10-61/+65
2020-04-21Fix checkstyle warnings in netconf simulatorBartosz Gardziejewski10-61/+65
Issue-ID: INT-1517 Signed-off-by: Bartosz Gardziejewski <bartosz.gardziejewski@nokia.com> Change-Id: I518c4863563217db746ccb5082aef7727a175bc7
2020-04-21Fix sonar issue NetconfMessageListenerTestAleksandra Maciaga1-0/+2
Tests should include assertions A test case without assertions ensures only that no exceptions are thrown. Beyond basic runnability, it ensures nothing about the behavior of the code under test. Issue-ID: INT-1517 Signed-off-by: Aleksandra Maciaga <aleksandra.maciaga@nokia.com> Change-Id: I0f60482a6db2e24b23630c88bf13264c4d6fbbd6
2020-04-21Merge "Fix sonar issue NetconfConfigurationService"Bogumil Zebek1-2/+2
2020-04-21Merge "Fix sonar issue NetconfEndpoint"Bogumil Zebek1-2/+2
2020-04-21Merge "Provide the parametrized type for this generic"Krzysztof Kuzmicki2-10/+10
2020-04-21Update java to version 11Bartosz Gardziejewski6-10/+10
Issue-ID: INT-1517 Signed-off-by: Bartosz Gardziejewski <bartosz.gardziejewski@nokia.com> Change-Id: Ibd3e10c534758e1b26e3a1cbd8154f5aeb423721
2020-04-21Remove usage of generic wildcard typeBogumil Zebek1-6/+3
It is highly recommended not to use wildcard types as return types. Because the type inference rules are fairly complex it is unlikely the user of that API will know how to use it correctly. Issue-ID: INT-1517 Signed-off-by: Zebek Bogumil <bogumil.zebek@nokia.com> Change-Id: Ib7fac9587e158afce6856309dfb2f397661c72b9
2020-04-21Merge "Check if command line arguments are used properly"Krzysztof Kuzmicki2-2/+6
2020-04-21Provide the parametrized type for this genericBogumil Zebek2-10/+10
Generic types shouldn't be used raw (without type parameters) in variable declarations or return values. Doing so bypasses generic type checking, and defers the catch of unsafe code to runtime. Issue-ID: INT-1517 Signed-off-by: Zebek Bogumil <bogumil.zebek@nokia.com> Change-Id: I211f57a49a78edcb538a9c9d19e543371811845b
2020-04-21Fix sonar issue NetconfEndpointAleksandra Maciaga1-2/+2
Issue-ID: INT-1517 Signed-off-by: Aleksandra Maciaga <aleksandra.maciaga@nokia.com> Change-Id: Ie6d5f5b32dc28ac64a95cec90d483476aee39451
2020-04-21Merge "Fix security vulnerable"Krzysztof Kuzmicki1-1/+6
2020-04-21Merge "Add lombok annotations config to be skipped in coverage"Bogumil Zebek1-0/+2
2020-04-21Fix sonar issue NetconfConfigurationServiceAleksandra Maciaga1-2/+2
Issue-ID: INT-1517 Signed-off-by: Aleksandra Maciaga <aleksandra.maciaga@nokia.com> Change-Id: I08192bfd07455f7aa929060840d7e63d9a00f156
2020-04-21Check if command line arguments are used properlyBogumil Zebek2-2/+6
Yes. Parameters are used properly. Thus we will turn off SONAR rule (Using command line arguments is security-sensitive) for this main functions. Issue-ID: INT-1517 Signed-off-by: Zebek Bogumil <bogumil.zebek@nokia.com> Change-Id: I659ba8d6d932653f4866667faa04236a72d77b6b
2020-04-21Fix security vulnerableBogumil Zebek1-1/+6
User provided data, such as URL parameters, POST data payloads or cookies, should always be considered untrusted and tainted. Applications logging tainted data could enable an attacker to inject characters that would break the log file pattern. This could be used to block monitors and SIEM (Security Information and Event Management) systems from detecting other malicious events. This problem could be mitigated by sanitizing the user provided data before logging it. Issue-ID: INT-1517 Signed-off-by: Zebek Bogumil <bogumil.zebek@nokia.com> Change-Id: Ifc4cd24daba49c3fe2e41a5709a87d5cf3daa642
2020-04-21Merge "Remove unused/duplicated dependencies and group them in scope groups"Bogumil Zebek3-119/+282
2020-04-21Add lombok annotations config to be skipped in coverageMichal Banka1-0/+2
Change-Id: Iffde6ca3be457b18490b4025c70acc963963a209 Signed-off-by: Michal Banka <michal.banka@nokia.com> Issue-ID: INT-1517
2020-04-21Merge "Resolve checkstyle warnings in PNF simulator"Bogumil Zebek41-564/+586
2020-04-21Remove unused/duplicated dependencies and group them in scope groupsPawel3-119/+282
Issue-ID: INT-1517 Signed-off-by: Pawel <pawel.kasperkiewicz@nokia.com> Change-Id: Ied46b2a6f33711aa5cde3328353f33011ff0c3cd
2020-04-21Fix sonar issue KafkaListenerHandleredyta1-9/+6
Issue-ID: INT-1517 Signed-off-by: Edyta Krukowska <edyta.krukowska@nokia.com> Change-Id: I1e65a3c0a1bb12d0809dc33a491b81d0b58fb324
2020-04-21Resolve checkstyle warnings in PNF simulatorBartosz Gardziejewski41-564/+586
Issue-ID: INT-1517 Signed-off-by: Bartosz Gardziejewski <bartosz.gardziejewski@nokia.com> Change-Id: I43e9f129c24ef33d93b550600e4dd850f881126b
2020-04-21Merge "Extract versions to properties"Bogumil Zebek3-105/+143
2020-04-20Extract versions to propertiesPawel3-105/+143
Issue-ID: INT-1517 Signed-off-by: Pawel <pawel.kasperkiewicz@nokia.com> Change-Id: If966e5f755fc22ad428141bc9d3fdbeb756fa6f8
2020-04-20Add test for DBTemplateReaderBogumil Zebek1-0/+81
Issue-ID: INT-1517 Signed-off-by: Zebek Bogumil <bogumil.zebek@nokia.com> Change-Id: Iccd03fa2b784fc249536103a4e3184824d2c6486
2020-04-20Merge "Fix sonar issue SslSupportLevel"Bogumil Zebek1-1/+1
2020-04-20Merge "Fix sonar issue HttpClientAdapterImpl"Bogumil Zebek1-12/+12
2020-04-20Merge "Fix sonar issue EventScheduler"Bogumil Zebek1-32/+31
2020-04-20Merge "Fix sonar issue EventJob"Bogumil Zebek1-5/+6
2020-04-20Merge "Fix sonar issue SimualtorService"Bogumil Zebek1-4/+4
2020-04-20Merge "Fix sonar issue FsToDbTemplateSynchronizer"Bogumil Zebek1-1/+1