Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

A nested class is any class whose declaration occurs within the body of another class or interface [JLS 2005]. The use of a nested class is error - prone unless the semantics are well understood. A common notion is that only the nested class may access the contents of the outer class. Not only does the nested class have access to the private fields of the outer class, but the same fields can be accessed by any other class within the package when the nested class is declared public or if it contains public methods or constructors. As a result, the nested class must not expose the private members of the outer class to external classes or packages.

According to the The Java Language Specification (JLS), §8.3, "Field Declarations" [JLS 2005]:

...

Compliant Solution

Use the private access specifier to hide the inner class and all contained methods and constructors.

Code Block
bgColor#ccccff
class Coordinates {
  private int x;
  private int y;

  private class Point {
    private void getPoint() {
      System.out.println("(" + x + "," + y + ")");
    }
  }
}

class AnotherClass {
  public static void main(String[] args) {
    Coordinates c = new Coordinates();
    Coordinates.Point p = c.new Point();    // failsFails to compile
    p.getPoint();
  }
}

...

The Java language system weakens the accessibility of private members of an outer class when a nested inner class is present, which can result in an information leak.

Rule

Severity

Likelihood

Remediation Cost

Priority

Level

OBJ08-J

mediumMedium

probableProbable

mediumMedium

P8

L2

Automated Detection

Automated detection of nonprivate inner classes that define nonprivate members and constructors that leak private data from the outer class is straightforward.

Related Guidelines

MITRE CWE

CWE-492. , Use of Inner Class Containing Sensitive Data

...

[JLS 2005]

§8.1.3, Inner Classes and Enclosing Instances 
§8.3, Field Declarations

[Long 2005]

§2Section 2.3, "Inner Classes"

[McGraw 1999]

Securing Java, : Getting Down to Business with Mobile Code

 

...