Package com.soffid.iam.service.ejb
Interface PreferencesService
-
public interface PreferencesService
EJB PreferencesService Manages user preferences
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
findMyPreference(String name)
Map<String,String>
findUserPreferences(String user)
void
setUserPreference(String user, String preference, String value)
Map<String,String>
setUserPreferences(String user, Map<String,String> preferences)
void
updateMyPreference(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
-
-