Interface UserAccountRepository
- All Superinterfaces:
GenericRepository<UserAccount>
- All Known Implementing Classes:
UserAccountFileRepository,UserAccountJpaRepository
-
Nested Class Summary
Nested classes/interfaces inherited from interface io.extact.rms.application.persistence.GenericRepository
GenericRepository.ApiType -
Method Summary
Modifier and TypeMethodDescriptionfindByLoginId(String loginId) ログインIDに一致するユーザを取得する。findByLoginIdAndPasswod(String loginId, String password) ログインIDとパスワードに一致するユーザを取得。
-
Method Details
-
findByLoginIdAndPasswod
ログインIDとパスワードに一致するユーザを取得。- Parameters:
loginId- ログインIDpassword- パスワード- Returns:
- 該当ユーザ。該当なしはnull
-
findByLoginId
ログインIDに一致するユーザを取得する。- Parameters:
loginId- ログインID- Returns:
- 該当ユーザ。該当なしはnull
-