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 mappedvoid putValue(java.lang.String name, java.lang.Object value)
Maps the specified key to the specified value in the hashtablevoid removeValue(java.lang.String name)
Removes the key and its corresponding value from the hashtable.
Method Detail 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 hashtable
- value - - the value
removeValue
public void removeValue(java.lang.String name)
- Removes the key and its corresponding value from the hashtable.
WebSphere is a trademark of the IBM Corporation in the United States, other countries, or both.
IBM is a trademark of the IBM Corporation in the United States, other countries, or both.