Uses of Class
com.restapi.template.security.data.UserRole
-
Packages that use UserRole Package Description com.restapi.template.api.user.data com.restapi.template.security com.restapi.template.security.data -
-
Uses of UserRole in com.restapi.template.api.user.data
Constructor parameters in com.restapi.template.api.user.data with type arguments of type UserRole Constructor Description Users(java.lang.String userId, java.lang.String password, java.lang.String name, UserStatus state, java.util.List<UserRole> roles, java.lang.String refreshToken) -
Uses of UserRole in com.restapi.template.security
Method parameters in com.restapi.template.security with type arguments of type UserRole Modifier and Type Method Description java.lang.StringJwtTokenProvider. createAccessToken(java.lang.String userId, java.util.List<UserRole> roles)AccessToken 생성.java.lang.StringJwtTokenProvider. createRefreshToken(java.lang.String userId, java.util.List<UserRole> roles)RefreshToken 생성.protected java.lang.StringJwtTokenProvider. generateToken(java.lang.String userId, java.util.List<UserRole> roles, long tokenValidMilSecond)JWTToken 생성. -
Uses of UserRole in com.restapi.template.security.data
Fields in com.restapi.template.security.data with type parameters of type UserRole Modifier and Type Field Description private java.util.List<UserRole>Account. roles사용자 권한.Methods in com.restapi.template.security.data that return UserRole Modifier and Type Method Description static UserRoleUserRole. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static UserRole[]UserRole. values()Returns an array containing the constants of this enum type, in the order they are declared.Constructor parameters in com.restapi.template.security.data with type arguments of type UserRole Constructor Description Account(java.lang.String userId, java.lang.String password, java.lang.String name, UserStatus state, java.util.List<UserRole> roles, java.lang.String refreshToken)계정.
-