[INDEX] 用語集
表示切り替え:
用語(物理名) 用語 説明 種類 識別子
domain ドメイン層 パッケージ com.example.sms.domain
auth 認証 パッケージ com.example.sms.domain.model.system.auth
user ユーザー パッケージ com.example.sms.domain.model.system.user
infrastructure インフラストラクチャ層 パッケージ com.example.sms.infrastructure
datasource データソース パッケージ com.example.sms.infrastructure.datasource
repository レポジトリ パッケージ com.example.sms.infrastructure.repository
presentation プレゼンテーション層 パッケージ com.example.sms.presentation
service サービス層 パッケージ com.example.sms.service
AuthUserDetails 認証ユーザー クラス com.example.sms.domain.model.system.auth.AuthUserDetails
Name 名前 クラス com.example.sms.domain.model.system.user.Name
Password パスワード クラス com.example.sms.domain.model.system.user.Password
PasswordException パスワード例外 クラス com.example.sms.domain.model.system.user.PasswordException
RoleName 役割 クラス com.example.sms.domain.model.system.user.RoleName
User ユーザー クラス com.example.sms.domain.model.system.user.User
UserException ユーザー例外 クラス com.example.sms.domain.model.system.user.UserException
UserId ユーザーID クラス com.example.sms.domain.model.system.user.UserId
UserIdException ユーザーID例外 クラス com.example.sms.domain.model.system.user.UserIdException
UserList ユーザー一覧 クラス com.example.sms.domain.model.system.user.UserList
AuthApiController 認証API クラス com.example.sms.presentation.api.system.auth.AuthApiController
LoginRequest 認証リクエスト クラス com.example.sms.presentation.api.system.auth.payload.request.LoginRequest
SignupRequest ユーザー登録リクエスト クラス com.example.sms.presentation.api.system.auth.payload.request.SignupRequest
UserApiController ユーザーAPI クラス com.example.sms.presentation.api.system.user.UserApiController
AuthApiService 認証APIサービス クラス com.example.sms.service.system.auth.AuthApiService
AuthRepository 認証リポジトリ クラス com.example.sms.service.system.auth.AuthRepository
AuthService 認証サービス クラス com.example.sms.service.system.auth.AuthService
UserManagementService ユーザー管理サービス クラス com.example.sms.service.system.user.UserManagementService
UserRepository ユーザーレポジトリ クラス com.example.sms.service.system.user.UserRepository
FirstName メソッド com.example.sms.domain.model.system.user.Name#FirstName()
FullName フルネーム メソッド com.example.sms.domain.model.system.user.Name#FullName()
LastName メソッド com.example.sms.domain.model.system.user.Name#LastName()
Value パスワード メソッド com.example.sms.domain.model.system.user.Password#Value()
Value ユーザーID メソッド com.example.sms.domain.model.system.user.UserId#Value()
getFirstName This method was generated by MyBatis Generator. This method returns the value of the database column system.usr.first_name メソッド com.example.sms.infrastructure.datasource.system.user.Usr#getFirstName()
getLastName This method was generated by MyBatis Generator. This method returns the value of the database column system.usr.last_name メソッド com.example.sms.infrastructure.datasource.system.user.Usr#getLastName()
getPassword This method was generated by MyBatis Generator. This method returns the value of the database column system.usr.password メソッド com.example.sms.infrastructure.datasource.system.user.Usr#getPassword()
getRoleName This method was generated by MyBatis Generator. This method returns the value of the database column system.usr.role_name メソッド com.example.sms.infrastructure.datasource.system.user.Usr#getRoleName()
getUserId This method was generated by MyBatis Generator. This method returns the value of the database column system.usr.user_id メソッド com.example.sms.infrastructure.datasource.system.user.Usr#getUserId()
setFirstName This method was generated by MyBatis Generator. This method sets the value of the database column system.usr.first_name メソッド com.example.sms.infrastructure.datasource.system.user.Usr#setFirstName()
setLastName This method was generated by MyBatis Generator. This method sets the value of the database column system.usr.last_name メソッド com.example.sms.infrastructure.datasource.system.user.Usr#setLastName()
setPassword This method was generated by MyBatis Generator. This method sets the value of the database column system.usr.password メソッド com.example.sms.infrastructure.datasource.system.user.Usr#setPassword()
setRoleName This method was generated by MyBatis Generator. This method sets the value of the database column system.usr.role_name メソッド com.example.sms.infrastructure.datasource.system.user.Usr#setRoleName()
setUserId This method was generated by MyBatis Generator. This method sets the value of the database column system.usr.user_id メソッド com.example.sms.infrastructure.datasource.system.user.Usr#setUserId()
deleteByPrimaryKey This method was generated by MyBatis Generator. This method corresponds to the database table system.usr メソッド com.example.sms.infrastructure.datasource.system.user.UsrMapper#deleteByPrimaryKey()
insert This method was generated by MyBatis Generator. This method corresponds to the database table system.usr メソッド com.example.sms.infrastructure.datasource.system.user.UsrMapper#insert()
insertSelective This method was generated by MyBatis Generator. This method corresponds to the database table system.usr メソッド com.example.sms.infrastructure.datasource.system.user.UsrMapper#insertSelective()
selectByPrimaryKey This method was generated by MyBatis Generator. This method corresponds to the database table system.usr メソッド com.example.sms.infrastructure.datasource.system.user.UsrMapper#selectByPrimaryKey()
updateByPrimaryKey This method was generated by MyBatis Generator. This method corresponds to the database table system.usr メソッド com.example.sms.infrastructure.datasource.system.user.UsrMapper#updateByPrimaryKey()
updateByPrimaryKeySelective This method was generated by MyBatis Generator. This method corresponds to the database table system.usr メソッド com.example.sms.infrastructure.datasource.system.user.UsrMapper#updateByPrimaryKeySelective()
authenticateUser ユーザーJWT認証 メソッド com.example.sms.service.system.auth.AuthApiService#authenticateUser()
getUserNameFromJwtToke JWTトークンからユーザー名の取得 メソッド com.example.sms.service.system.auth.AuthApiService#getUserNameFromJwtToke()
validateJwtToke JWTトークンの取得 メソッド com.example.sms.service.system.auth.AuthApiService#validateJwtToke()
validateJwtToken JWTトークンの検証 メソッド com.example.sms.service.system.auth.AuthApiService#validateJwtToken()
loadUserByUsername ユーザー認証 メソッド com.example.sms.service.system.auth.AuthService#loadUserByUsername()
delete ユーザー削除 メソッド com.example.sms.service.system.user.UserManagementService#delete()
find ユーザー検索 メソッド com.example.sms.service.system.user.UserManagementService#find()
register ユーザー新規登録 メソッド com.example.sms.service.system.user.UserManagementService#register()
save ユーザー情報編集 メソッド com.example.sms.service.system.user.UserManagementService#save()
selectAll ユーザー一覧 メソッド com.example.sms.service.system.user.UserManagementService#selectAll()
selectAllWithPageInfo ユーザー一覧(ページング) メソッド com.example.sms.service.system.user.UserManagementService#selectAllWithPageInfo()