| |
|
| java.lang.Object org.acegisecurity.acl.basic.NamedEntityObjectIdentity
NamedEntityObjectIdentity | public class NamedEntityObjectIdentity implements AclObjectIdentity(Code) | | Simple implementation of
AclObjectIdentity . Uses String s to store the identity of the
domain object instance. Also offers a constructor that uses reflection to build the identity information.
|
NamedEntityObjectIdentity | public NamedEntityObjectIdentity(String classname, String id)(Code) | | |
equals | public boolean equals(Object arg0)(Code) | | Important so caching operates properly. Considers an object of the same class equal if it has the same
classname and id properties.
Parameters: arg0 - object to compare true if the presented object matches this object |
getClassname | public String getClassname()(Code) | | Indicates the classname portion of the object identity.
the classname (never null ) |
getId | public String getId()(Code) | | Indicates the instance identity portion of the object identity.
the instance identity (never null ) |
hashCode | public int hashCode()(Code) | | Important so caching operates properly.
the hash of the classname and id |
|
|
|