Hi Mike,
section 2.1 says:
/The entity class must be a top-level class./
Going by this rule, the following example is wrong.
public class Foo {
@Entity public static class Bar {
}
}
Just curious as to why a public static nested class can't be an enity.
Thanks,
Sahoo