| |
|
| org.jasig.portal.security.IPerson
All known Subclasses: org.jasig.portal.security.provider.RestrictedPerson, org.jasig.portal.security.provider.PersonImpl,
Field Summary | |
final public static int | GUEST_ID The user id for guest users. | final public static int | SYSTEM_USER_ID The user id for the special system user. | final public static int | UNDEFINED_ID The default ID for person objects. | final public static String | USERNAME String used as a key for the eduPerson username attribute. |
GUEST_ID | final public static int GUEST_ID(Code) | | The user id for guest users.
|
SYSTEM_USER_ID | final public static int SYSTEM_USER_ID(Code) | | The user id for the special system user.
|
UNDEFINED_ID | final public static int UNDEFINED_ID(Code) | | The default ID for person objects.
|
USERNAME | final public static String USERNAME(Code) | | String used as a key for the eduPerson username attribute.
|
getAttribute | public Object getAttribute(String key)(Code) | | Gets an attribute associated with the user
Parameters: key - attribute associated with the user |
getAttributeNames | public Enumeration getAttributeNames()(Code) | | Returns the names of all of the attributes stored for the user
names of all of the attributes stored for the user |
getAttributeValues | public Object[] getAttributeValues(String key)(Code) | | Gets multiple values of an attribute associated with the user
Parameters: key - attributes associated with the user |
getAttributes | public Enumeration getAttributes()(Code) | | Gets all of the attributes associated with the user
all of the attributes associated with the user |
getFullName | public String getFullName()(Code) | | Gets the full name of the user
full name of the user |
getID | public int getID()(Code) | | Gets the ID of the user
ID of the user |
getSecurityContext | public ISecurityContext getSecurityContext()(Code) | | Gets the security context object associated with the user
security context object associated with the user |
isGuest | public boolean isGuest()(Code) | | Checks to see if this user is considered a guest
true if user is considered a guest |
setAttribute | public void setAttribute(String key, Object value)(Code) | | Associates an attribute with the user
Parameters: key - Parameters: value - |
setAttributes | public void setAttributes(Map attrs)(Code) | | Associates attributes with the user
Parameters: attrs - |
setEntityIdentifier | public void setEntityIdentifier(EntityIdentifier ei)(Code) | | Explicitly set the entity identifier
The default implementation enforces a one time setting
so that the value can't be changed once explicitly set.
Parameters: ei - |
setFullName | public void setFullName(String sFullName)(Code) | | Sets the full name of the user
Parameters: sFullName - |
setID | public void setID(int sID)(Code) | | Sets the ID of the user
Parameters: sID - |
setSecurityContext | public void setSecurityContext(ISecurityContext securityContext)(Code) | | Associates a security context object with the user
Parameters: securityContext - |
|
|
|