| com.caucho.portal.generic.UserAttributeStore
All known Subclasses: com.caucho.portal.generic.AbstractUserAttributeStore,
UserAttributeStore | public interface UserAttributeStore (Code) | | Factory that returns a Map of user attribute values
for a particular client. The factory is used once for each
connection if needed.
|
finish | public void finish(Map<String, String> userAttributeMap) throws IOException(Code) | | Called when a Map previously returned by getUserAttributeMap()
is no longer needed.
A call to finish() is not guaranteed to occur for every Map
returned by getUserAttributeMap(). If an error occurs when processing a
request, the portal may not have an opportunity to call finish().
|
getUserAttributeMap | public Map<String, String> getUserAttributeMap(PortletRequest request, Set<String> names) throws IOException(Code) | | Return a map of user attributes. Implementing classes use the information
available from request to determine the identity
of the user.
Parameters: names - a Set of names indicating the user attributes that should bereturned, may be null in which case all user attributes for theuser should be returned. a Map of attribute names to values, or null if no user attributesare available. |
|
|