Interface UserAccountEntityManager
-
- All Superinterfaces:
EntityManager<UserAccountEntity>
- All Known Implementing Classes:
UserAccountEntityManagerImpl
public interface UserAccountEntityManager extends EntityManager<UserAccountEntity>
- Author:
- Filip Hrisafov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UserAccountQuery
createNewUserAccountQuery()
void
deleteByUserId(String userId)
List<UserAccount>
findUserAccountByQueryCriteria(UserAccountQuery query)
long
findUserAccountCountByNativeQuery(Map<String,Object> parameterMap)
long
findUserAccountCountByQueryCriteria(UserAccountQuery query)
List<UserAccountEntity>
findUserAccountsByNativeQuery(Map<String,Object> parameterMap)
-
-
-
Method Detail
-
findUserAccountByQueryCriteria
List<UserAccount> findUserAccountByQueryCriteria(UserAccountQuery query)
-
findUserAccountCountByQueryCriteria
long findUserAccountCountByQueryCriteria(UserAccountQuery query)
-
createNewUserAccountQuery
UserAccountQuery createNewUserAccountQuery()
-
findUserAccountsByNativeQuery
List<UserAccountEntity> findUserAccountsByNativeQuery(Map<String,Object> parameterMap)
-
findUserAccountCountByNativeQuery
long findUserAccountCountByNativeQuery(Map<String,Object> parameterMap)
-
deleteByUserId
void deleteByUserId(String userId)
-
-