forked from pac4j/pac4j
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spotbugs-exclude.xml
83 lines (83 loc) · 2.46 KB
/
spotbugs-exclude.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<FindBugsFilter>
<Match>
<Class name="~.*AnonymousClient"/>
<Bug pattern="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD" />
</Match>
<Match>
<Class name="~.*BaseClient"/>
<Bug pattern="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD" />
</Match>
<Match>
<Class name="~.*PathMatcher"/>
<Bug pattern="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD" />
</Match>
<Match>
<Class name="~.*AbstractConfigFilter"/>
<Bug pattern="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD" />
</Match>
<Match>
<Class name="~.*DigestCredentials"/>
<Bug pattern="EQ_OVERRIDING_EQUALS_NOT_SYMMETRIC" />
</Match>
<Match>
<Class name="~.*BooleanConverter$"/>
<Bug code="NP" />
</Match>
<Match>
<Class name="~.*DefaultCallbackLogic"/>
<Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE" />
</Match>
<Match>
<Class name="~.*DefaultCallbackLogicTests"/>
<Bug pattern="NP_NULL_ON_SOME_PATH_FROM_RETURN_VALUE" />
</Match>
<Match>
<Class name="~.*DefaultLogoutLogic"/>
<Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE" />
</Match>
<Match>
<!-- disabling the check for all classes because of a bug in JDK11 <Class name="~.*MongoProfileService"/-->
<Bug pattern="RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE" />
</Match>
<!-- JDK10 build fix -->
<Match>
<Bug pattern="OBL_UNSATISFIED_OBLIGATION" />
</Match>
<Match>
<Bug pattern="JUA_DONT_ASSERT_INSTANCEOF_IN_TESTS" />
</Match>
<Match>
<Class name="~.*SAML2Credentials"/>
<Bug code="Se" />
</Match>
<Match>
<Class name="~.*SAML2ClientConfiguration"/>
<Bug code="REC" />
</Match>
<Match>
<Bug pattern="EI_EXPOSE_REP" />
</Match>
<Match>
<Bug pattern="EI_EXPOSE_REP2" />
</Match>
<Match>
<Class name="~.*ProfileHelper"/>
<Bug pattern="EI_EXPOSE_STATIC_REP2" />
</Match>
<Match>
<Class name="~.*ProfileHelper"/>
<Bug pattern="MS_EXPOSE_REP" />
</Match>
<Match>
<Class name="~.*JsonHelper"/>
<Bug pattern="MS_EXPOSE_REP" />
</Match>
<Match>
<Class name="~.*SecretSignatureConfigurationTests"/>
<Bug pattern="DMI_RANDOM_USED_ONLY_ONCE" />
</Match>
<Match>
<Class name="~.*DbServer"/>
<Bug pattern="MS_EXPOSE_REP" />
</Match>
</FindBugsFilter>