So currently RunDataFactory does not set RunData.acl... so if you call
RunData.getACL() you will always get null.
What I was thinking is setting up a late binding of AccessControlList.
Specifically psuedo code of:
- RunData
public AccessControlList getACL() {
if (this.acl == null) {
this.acl = new AccessControlList( this.getUser(), null );
}
return this.acl;
}
This way if you never all getACL your app will be a little faster
because you don't hit the database.
Thoughts? Has this been discussed before?
--
Kevin A Burton
Senior Software Engineer
Kendara Inc
http://www.kendara.com
Mobile: 408-910-6145
"If you continue running Windows, your system may become unstable."
------------------------------------------------------------
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Problems?: [EMAIL PROTECTED]