diff options
author | Thomas <> | 2021-10-21 10:54:55 +0200 |
---|---|---|
committer | Thomas <> | 2022-03-03 16:31:57 +0100 |
commit | 6fe2e9ab4defb4b200fbacdb5bd346b16a3e3037 (patch) | |
tree | c09a9da91b16b35d8a05f7b0adf428100216242e /eidas_modules/authmodule_id-austria/checks | |
parent | 4261c3b57963476673ca87f7e857f9baee6362fb (diff) | |
download | National_eIDAS_Gateway-6fe2e9ab4defb4b200fbacdb5bd346b16a3e3037.tar.gz National_eIDAS_Gateway-6fe2e9ab4defb4b200fbacdb5bd346b16a3e3037.tar.bz2 National_eIDAS_Gateway-6fe2e9ab4defb4b200fbacdb5bd346b16a3e3037.zip |
fix build process and jUnit test
Diffstat (limited to 'eidas_modules/authmodule_id-austria/checks')
-rw-r--r-- | eidas_modules/authmodule_id-austria/checks/spotbugs-exclude.xml | 42 |
1 files changed, 26 insertions, 16 deletions
diff --git a/eidas_modules/authmodule_id-austria/checks/spotbugs-exclude.xml b/eidas_modules/authmodule_id-austria/checks/spotbugs-exclude.xml index 311c3a8e..366c7aca 100644 --- a/eidas_modules/authmodule_id-austria/checks/spotbugs-exclude.xml +++ b/eidas_modules/authmodule_id-austria/checks/spotbugs-exclude.xml @@ -1,19 +1,29 @@ <?xml version="1.0" encoding="UTF-8"?> <FindBugsFilter> - <Match> - <!-- CSRF protection is implicit available by request token --> - <Class name="at.asitplus.eidas.specific.modules.auth.idaustria.controller.IdAustriaAuthSignalController" /> - <Method name="performEidasAuthentication" /> - <OR> - <Bug pattern="SPRING_CSRF_UNRESTRICTED_REQUEST_MAPPING" /> - </OR> - </Match> - <!-- Logging of invalid SAML2 responses are allowed on debug level --> - <Match> - <Class name="at.asitplus.eidas.specific.modules.auth.idaustria.tasks.ReceiveFromIdAustriaSystemTask"/> - <Method name="execute" /> - <OR> - <Bug pattern="CRLF_INJECTION_LOGS" /> - </OR> - </Match> + <Match> + <!-- CSRF protection is implicit available by request token --> + <Class name="at.asitplus.eidas.specific.modules.auth.idaustria.controller.IdAustriaAuthSignalController" /> + <Method name="performEidasAuthentication" /> + <OR> + <Bug pattern="SPRING_CSRF_UNRESTRICTED_REQUEST_MAPPING" /> + </OR> + </Match> + <!-- Logging of invalid SAML2 responses are allowed on debug level --> + <Match> + <Class name="at.asitplus.eidas.specific.modules.auth.idaustria.tasks.ReceiveFromIdAustriaSystemTask"/> + <Method name="execute" /> + <OR> + <Bug pattern="CRLF_INJECTION_LOGS" /> + </OR> + </Match> + <Match> + <!-- Builder pattern does not expose date elements --> + <OR> + <Class name="at.asitplus.eidas.specific.modules.auth.idaustria.config.IdAustriaAuthRequestBuilderConfiguration" /> + </OR> + <OR> + <Bug pattern="EI_EXPOSE_REP" /> + <Bug pattern="EI_EXPOSE_REP2" /> + </OR> + </Match> </FindBugsFilter> |