aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2022-02-08feature(matching): finalize matching by residence searchThomas8-143/+323
Add ZMR communication and state validation for match-by-residence operation
2022-02-08refactor(matching): move AddresssucheController into eIDAS module to reuse ↵Thomas1-26/+36
data-model for tasks
2022-02-08chore(ernp): ignore search requests with residence information.Thomas1-1/+3
ERnP search is not used here, because we only search for people with Austrian residence and they are in ZMR only.
2022-02-08test(core): fix broken integration tests after ERnP client integrationThomas3-6/+46
2022-02-08fix(matching): make matching DTO's serializeable because the has to be ↵Thomas4-4/+19
stored into session
2022-02-08chore(matching): fix some code-style and code-quality issuesThomas4-13/+18
2022-02-08test(ernp): fix broken test after ERnP integrationThomas1-1/+1
2022-02-08chore(mathing): change log level ZMRClientThomas1-1/+1
2022-02-08refactor(matching): change 'kitt' and 'update' steps in 'InitialSearchTask'Thomas6-37/+386
- Update MDS in case of changes eIDAS data and already existing ERnP entry - Add additional attributes in case of new eIDAS attributes outside of MDS
2022-02-08feature(ernp): update MDS if register information does not match to ↵Thomas1-26/+85
information from eIDAS
2022-02-08test(matching): fix broken tests and add some more edge casesThomas2-7/+151
2022-02-08test(ernp): exclude generated ERnP classes from PWD checksThomas1-0/+1
2022-02-08chore(szr): remove dummy code for SZR emulationThomas2-126/+6
2022-02-08refactor(szr): remove 'insertErnp' functionality from SZR client.Thomas6-275/+50
After this, the person is directly added into ERnP by using ErnpRestClient
2022-02-08feature(ernp): add person into ERnP of mathing ends with no resultThomas6-144/+517
2022-02-08feature(ernp): port search and update steps from ZMR client to ERnP client ↵Thomas4-31/+310
because we need the same functionality on different API
2022-02-08test(ernp): add first simple test to get familary with ERnP clientThomas2-0/+217
2022-02-08test(core): fix broken tests after refactoring of ERnPClient APIThomas6-11/+110
2022-02-08fix(ernp): fix some bugs in ERnP client implementationThomas3-111/+180
2022-02-08refactor(ernp): update openAPI specification from BM.I to use ↵Thomas1-12/+12
'application/json' instead of 'application/xml'
2022-02-08feature(ernp): implement 'searchByPersonalIdentifier' as a first test versionThomas4-35/+409
2022-02-08refactor(ernp): change API of ERnP client to same model as ZMR clientThomas5-110/+287
2022-02-08refactor(ernp): move IErnpClient interface into another packageThomas6-5/+6
2022-02-08feature(ernp): generate ERnP client from openAPI specificationThomas4-4/+1956
2022-02-08Merge branch 'feature/matching_search_address' into 'feature/matching_base'Thomas Lenz52-1661/+14204
add SOAP client to search addresses and add first simple test to request... See merge request egiz/eidas_at_proxy!15
2022-02-08Merge branch 'feature/matching_base' into 'feature/matching_search_address'Thomas Lenz33-263/+589
# Conflicts: # connector/src/test/java/at/asitplus/eidas/specific/connector/test/saml2/Pvp2SProfileEndPointTest.java
2022-01-13Merge branch 'feature/matching_base_rebase' into 'feature/matching_base'Thomas Lenz33-255/+581
Feature/matching base rebase See merge request egiz/eidas_at_proxy!14
2022-01-10test: switch to latest junit 4.x versionThomas1-1/+1
2022-01-10Merge branch 'nightlybuild' into feature/matching_base_rebaseThomas25-215/+293
# Conflicts: # .gitlab-ci.yml # connector/src/main/resources/specific_eIDAS_connector.beans.xml # connector/src/test/java/at/asitplus/eidas/specific/connector/test/FullStartUpAndProcessTest.java # pom.xml
2022-01-10Merge branch 'master' into feature/matching_base_rebaseThomas15-53/+301
# Conflicts: # connector/pom.xml # connector/src/test/java/at/asitplus/eidas/specific/connector/test/task/GenerateCountrySelectionFrameTaskTest.java # eidas_modules/authmodule-eIDAS-v2/checks/spotbugs-exclude.xml # eidas_modules/authmodule-eIDAS-v2/pom.xml # pom.xml
2022-01-10Merge branch 'feature/opensaml4' into 'nightlybuild'Thomas Lenz11-152/+197
Feature/opensaml4 See merge request egiz/eidas_at_proxy!13
2022-01-10Merge branch 'feature/matching_refactoring' into 'feature/matching_base'Thomas Lenz21-919/+511
Fixing some issues See merge request egiz/eidas_at_proxy!12
2022-01-10chore(core): update commons-io to latest version and jetty to lastest 9.x ↵Thomas1-1/+7
version
2022-01-10doc: add file with release history informationThomas1-0/+46
2022-01-10chore(core): update third-party libs to latest versionsThomas2-14/+119
2022-01-09refactor(core): update GUI generation to new API from EAAF-Components 1.2.xThomas6-130/+18
2022-01-09refactor(core): update eaaf-components to switch to openSAML4.xThomas3-8/+8
2021-12-13add default tag to Gitlab CI configurationThomas1-0/+4
2021-12-13update third-party libs.Thomas2-6/+18
2021-12-07Use relative paths in templates to enable preview in browserChristian Kollmann25-105/+168
If Thymeleaf is active (i.e. the template is rendered by the Webapp), the path gets replaced anyway.
2021-12-07Rework styling of other login method templateChristian Kollmann4-137/+150
2021-12-07Rework styling of residency search templateChristian Kollmann9-132/+243
2021-12-07Unify HTML templates across test, main, basicConfigChristian Kollmann25-1543/+1684
2021-12-07Add PLZ to search for adresses in ZMRChristian Kollmann9-190/+250
2021-12-02Display all results to user after residency searchChristian Kollmann11-95/+385
2021-12-02Search with user provided input in ZMR for addressesChristian Kollmann9-81/+176
2021-12-02Add simple page to search for an Austrian AddressChristian Kollmann12-1/+11316
2021-12-02add SOAP client to search addresses and add first simple test to request ↵Thomas4-1/+456
address information from real TEST ZMR
2021-12-01Build: Remove dependency on IAIK JCEChristian Kollmann4-323/+9
2021-12-01Display invalid user input instead of terminating the processChristian Kollmann7-108/+52
Fixes #18