-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspotbugs-exclude.xml
More file actions
27 lines (27 loc) · 1.13 KB
/
Copy pathspotbugs-exclude.xml
File metadata and controls
27 lines (27 loc) · 1.13 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<FindBugsFilter>
<Match>
<!-- @EJB Injected false positive -->
<Bug pattern="SE_BAD_FIELD" />
<Or>
<Class name="org.jlab.sim.presentation.controller.ajax.AddSoftware"/>
<Class name="org.jlab.sim.presentation.controller.ajax.EditSoftware"/>
<Class name="org.jlab.sim.presentation.controller.ajax.EditSoftwareRisk"/>
<Class name="org.jlab.sim.presentation.controller.ajax.RemoveSoftware"/>
<Class name="org.jlab.sim.presentation.controller.Directory"/>
<Class name="org.jlab.sim.presentation.controller.Repositories"/>
<Class name="org.jlab.sim.presentation.controller.Sync"/>
</Or>
</Match>
<Match>
<!-- @Entity objects composed of other entities false positive -->
<Or>
<Bug pattern="EI_EXPOSE_REP" />
<Bug pattern="EI_EXPOSE_REP2" />
</Or>
<Or>
<Class name="org.jlab.sim.persistence.entity.Software"/>
<Class name="org.jlab.sim.persistence.entity.SoftwareTopic"/>
</Or>
</Match>
</FindBugsFilter>