Skip to content
Snippets Groups Projects

Spotbugs Annotations

11 files
+ 46
34
Compare changes
  • Side-by-side
  • Inline

Files

<FindBugsFilter>
<!-- This check is disabled because this user input is retrieved server-side from the application.properties file-->
<Match>
<Package name="nl.tudelft.ewi.tam.validators" />
<Method name="afterPropertiesSet" />
<Bug pattern="PATH_TRAVERSAL_IN" />
</Match>
<!-- This check is disabled because it gave false positives -->
<Match>
<Class name="nl.tudelft.ewi.tam.JdbcDaoImpl" />
<Method name="queryForList" />
<Bug pattern="SQL_INJECTION_SPRING_JDBC" />
</Match>
<!-- This check is disabled because these representations can be known -->
<Match>
<Class name="nl.tudelft.ewi.tam.beans.Dateslot" />
<Bug pattern="EI_EXPOSE_REP" />
</Match>
<Match>
<Class name="nl.tudelft.ewi.tam.beans.Dateslot" />
<Bug pattern="EI_EXPOSE_REP2" />
</Match>
<Match>
<Class name="nl.tudelft.ewi.tam.beans.Timeslot" />
<Bug pattern="EI_EXPOSE_REP" />
</Match>
<Match>
<Class name="nl.tudelft.ewi.tam.beans.Timeslot" />
<Bug pattern="EI_EXPOSE_REP2" />
</Match>
</FindBugsFilter>
\ No newline at end of file
Loading