Package com.soffid.iam.service.ejb
Interface PreferencesService
-
public interface PreferencesServiceEJB PreferencesService Manages user preferences
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringfindMyPreference(String name)Map<String,String>findUserPreferences(String user)voidsetUserPreference(String user, String preference, String value)Map<String,String>setUserPreferences(String user, Map<String,String> preferences)voidupdateMyPreference(String name, String value)
-
-
-
Method Detail
-
findMyPreference
String findMyPreference(String name) throws InternalErrorException
- Throws:
InternalErrorException
-
findUserPreferences
Map<String,String> findUserPreferences(String user) throws InternalErrorException
- Throws:
InternalErrorException
-
setUserPreferences
Map<String,String> setUserPreferences(String user, Map<String,String> preferences) throws InternalErrorException
- Throws:
InternalErrorException
-
setUserPreference
void setUserPreference(String user, String preference, String value) throws InternalErrorException
- Throws:
InternalErrorException
-
updateMyPreference
void updateMyPreference(String name, String value) throws InternalErrorException
- Throws:
InternalErrorException
-
-