summaryrefslogtreecommitdiff
path: root/eaaf_core_api/checks
diff options
context:
space:
mode:
authorThomas <>2023-05-15 08:36:30 +0200
committerThomas <>2023-05-15 08:36:30 +0200
commit5865c9e49fb399c7690ed87925ba7b8ad5d98f13 (patch)
treea37acda465cab14f290f27127045cb1518e1b0ce /eaaf_core_api/checks
parentbfeebfeb693f1f2ef0d2f6abb34bdf0aeffa3af4 (diff)
downloadEAAF-Components-5865c9e49fb399c7690ed87925ba7b8ad5d98f13.tar.gz
EAAF-Components-5865c9e49fb399c7690ed87925ba7b8ad5d98f13.tar.bz2
EAAF-Components-5865c9e49fb399c7690ed87925ba7b8ad5d98f13.zip
refact(core): change process-data holder-implementation to use Jackson serialization for storage
Diffstat (limited to 'eaaf_core_api/checks')
-rw-r--r--eaaf_core_api/checks/spotbugs-exclude.xml12
1 files changed, 12 insertions, 0 deletions
diff --git a/eaaf_core_api/checks/spotbugs-exclude.xml b/eaaf_core_api/checks/spotbugs-exclude.xml
new file mode 100644
index 00000000..1c4cf203
--- /dev/null
+++ b/eaaf_core_api/checks/spotbugs-exclude.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<FindBugsFilter>
+ <!-- Required polymoric serialization, because we has no class implementation on compile time. -->
+ <Match>
+ <OR>
+ <Class name="at.gv.egiz.eaaf.core.api.data.ExceptionContainer" />
+ </OR>
+ <OR>
+ <Bug pattern="JACKSON_UNSAFE_DESERIALIZATION" />
+ </OR>
+ </Match>
+</FindBugsFilter> \ No newline at end of file