Interface IdentityInfoEntityManager
-
- All Superinterfaces:
EntityManager<IdentityInfoEntity>
- All Known Implementing Classes:
IdentityInfoEntityManagerImpl
public interface IdentityInfoEntityManager extends EntityManager<IdentityInfoEntity>
- Author:
- Joram Barrez
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
deleteUserInfoByUserIdAndKey(String userId, String key)
List<IdentityInfoEntity>
findIdentityInfoByUserId(String userId)
IdentityInfoEntity
findUserInfoByUserIdAndKey(String userId, String key)
List<String>
findUserInfoKeysByUserIdAndType(String userId, String type)
void
updateUserInfo(String userId, String userPassword, String type, String key, String value, String accountPassword, Map<String,String> accountDetails)
-
-
-
Method Detail
-
findUserInfoByUserIdAndKey
IdentityInfoEntity findUserInfoByUserIdAndKey(String userId, String key)
-
findUserInfoKeysByUserIdAndType
List<String> findUserInfoKeysByUserIdAndType(String userId, String type)
-
findIdentityInfoByUserId
List<IdentityInfoEntity> findIdentityInfoByUserId(String userId)
-
updateUserInfo
void updateUserInfo(String userId, String userPassword, String type, String key, String value, String accountPassword, Map<String,String> accountDetails)
-
-