hi
i'm currently thinking about how to combine the basicacl package and jdo.
but the object design of this package seems to be harmonizd with jdbc and designed jdo-unfriendly: Object relational frameworks should give back the programmer a more object-oriented feeling, by replacing objectidentities by the objects itself, right?:
so what would you recommend?Code:public abstract class AbstractBasicAclEntry implements BasicAclEntry { private Object object; //instead of AclObjectIdentity aclObjectIdentity private Object parent; //instead of AclObjectIdentity aclObjectParentIdentity private Object recipient; private int[] validPermissions; private int mask = 0; }


