uCosminexus Application Server, Security Management Guide
interface UserAttributes
{
public Object getAttribute(String alias)
throws IllegalStateException;
public Enumeration getAttributes(String alias)
throws IllegalStateException;
public void addAttribute(String alias,
Object attr)
throws IllegalStateException;
public Enumeration getAttributeNames()
throws IllegalStateException;
public void removeAttribute(String alias)
throws IllegalStateException;
public int size()
throws IllegalStateException;
public Enumeration getAliases()
throws IllegalStateException;
}| Method name | Functionality |
|---|---|
| addAttribute method | Adds an attribute to the subject. |
| getAttribute method | Obtains an attribute bound to the subject. |
| getAttributeNames method | Obtains a list of attribute names bound to the subject. |
| getAttributes method | Obtains all of the attributes bound to the subject. |
| removeAttribute method | Deletes an attribute bound to the subject. |
| size method | Obtains the total number of attributes bound to the subject. |
| getAliases method | Not recommended. Use the getAttributeNames method. |
All Rights Reserved. Copyright (C) 2013, Hitachi, Ltd