OWASP Navigation

Archive for the ‘Secure coding’ Category

Recipe 1: Make all inner classes “private”

Wednesday, July 25th, 2007

Description
In Java, there a class could contain another class, so called “inner class”. This is a deprecated way of implementing the code, but sometimes an intrusive revision of class code was not feasible so workarounds must be implemented instead.

(more…)