com.ibm.websphere.userprofile
Interface UserProfileProperties
- public interface UserProfileProperties
This interface can be used to extend a User Profile so that you can place
arbitrary name/value pairs into the User Profile. This function is similar
to the use of the java.util.Dictionary class in the base JDK 1.x or any of
the classes which extend it.
Method Summary |
java.lang.Object |
getValue(java.lang.String name)
Returns the value to which specified key is mapped |
void |
putValue(java.lang.String name,
java.lang.Object value)
Maps the specified key to the specified value in the hashtable |
void |
removeValue(java.lang.String name)
Removes the key and its corresponding value from the hashtable. |
getValue
public java.lang.Object getValue(java.lang.String name)
- Returns the value to which specified key is mapped
- Parameters:
name
- - key in the hashtable- Returns:
- the value to which key is mapped
putValue
public void putValue(java.lang.String name,
java.lang.Object value)
- Maps the specified key to the specified value in the hashtable
- Parameters:
name
- - key in the hashtablevalue
- - the value
removeValue
public void removeValue(java.lang.String name)
- Removes the key and its corresponding value from the hashtable.
- Parameters:
key
- - key that needs to be removed