A C E F G I N O R S T U V 
All Classes All Packages

A

AbstractGrant - Class in com.byeongukchoi.oauth2.server.application
AbstractGrant abstract class
AbstractGrant() - Constructor for class com.byeongukchoi.oauth2.server.application.AbstractGrant
 
AccessToken - Interface in com.byeongukchoi.oauth2.server.domain
AccessToken interface
AccessTokenRepository<T extends AccessToken,​ID> - Interface in com.byeongukchoi.oauth2.server.domain.repository
AccessTokenRepository interface
AuthorizationCode - Interface in com.byeongukchoi.oauth2.server.domain
AuthorizationCode interface
AuthorizationCodeGrant - Class in com.byeongukchoi.oauth2.server.application
AuthorizationCodeGrant
AuthorizationCodeGrant(AuthorizationCodeRepository<AuthorizationCode, String>, AccessTokenRepository<AccessToken, String>, RefreshTokenRepository<RefreshToken, String>) - Constructor for class com.byeongukchoi.oauth2.server.application.AuthorizationCodeGrant
 
AuthorizationCodeRepository<T extends AuthorizationCode,​ID> - Interface in com.byeongukchoi.oauth2.server.domain.repository
AuthorizationCodeRepository interface
AuthorizationRequestDto - Class in com.byeongukchoi.oauth2.server.application.dto
AuthorizationRequestDto
AuthorizationRequestDto(String, String, String) - Constructor for class com.byeongukchoi.oauth2.server.application.dto.AuthorizationRequestDto
 
AuthorizationRequestDto(String, String, String, String, String, String) - Constructor for class com.byeongukchoi.oauth2.server.application.dto.AuthorizationRequestDto
 

C

Client - Interface in com.byeongukchoi.oauth2.server.domain
Client interface
ClientRepository<T extends Client,​ID> - Interface in com.byeongukchoi.oauth2.server.domain.repository
ClientRepository interface
com.byeongukchoi.oauth2.server.application - package com.byeongukchoi.oauth2.server.application
 
com.byeongukchoi.oauth2.server.application.dto - package com.byeongukchoi.oauth2.server.application.dto
 
com.byeongukchoi.oauth2.server.domain - package com.byeongukchoi.oauth2.server.domain
 
com.byeongukchoi.oauth2.server.domain.repository - package com.byeongukchoi.oauth2.server.domain.repository
 
com.byeongukchoi.oauth2.server.error.exception - package com.byeongukchoi.oauth2.server.error.exception
 

E

ErrorCode - Enum in com.byeongukchoi.oauth2.server.error.exception
 
expireCode(T) - Method in interface com.byeongukchoi.oauth2.server.domain.repository.AuthorizationCodeRepository
 
EXPIRED_AUTHORIZATION_CODE - com.byeongukchoi.oauth2.server.error.exception.ErrorCode
 
EXPIRED_REFRESH_TOKEN - com.byeongukchoi.oauth2.server.error.exception.ErrorCode
 
expireToken(T) - Method in interface com.byeongukchoi.oauth2.server.domain.repository.RefreshTokenRepository
 

F

findByCodeAndClientId(String, String) - Method in interface com.byeongukchoi.oauth2.server.domain.repository.AuthorizationCodeRepository
 
findByTokenAndClientId(ID, String) - Method in interface com.byeongukchoi.oauth2.server.domain.repository.RefreshTokenRepository
 

G

getClientId() - Method in interface com.byeongukchoi.oauth2.server.domain.AuthorizationCode
 
getClientId() - Method in interface com.byeongukchoi.oauth2.server.domain.RefreshToken
 
getCode() - Method in interface com.byeongukchoi.oauth2.server.domain.AuthorizationCode
 
getExpiresIn() - Method in interface com.byeongukchoi.oauth2.server.domain.AccessToken
 
getExpiresIn() - Method in interface com.byeongukchoi.oauth2.server.domain.RefreshToken
 
getNewCode(String, String, String) - Method in interface com.byeongukchoi.oauth2.server.domain.repository.AuthorizationCodeRepository
 
getNewToken(AuthorizationRequestDto) - Method in interface com.byeongukchoi.oauth2.server.domain.repository.AccessTokenRepository
 
getNewToken(AuthorizationRequestDto, String) - Method in interface com.byeongukchoi.oauth2.server.domain.repository.RefreshTokenRepository
 
getOne(ID) - Method in interface com.byeongukchoi.oauth2.server.domain.repository.ClientRepository
 
getToken() - Method in interface com.byeongukchoi.oauth2.server.domain.AccessToken
 
getToken() - Method in interface com.byeongukchoi.oauth2.server.domain.RefreshToken
 
getUsername() - Method in interface com.byeongukchoi.oauth2.server.domain.AuthorizationCode
 
getUsername() - Method in interface com.byeongukchoi.oauth2.server.domain.RefreshToken
 

I

isExpired() - Method in interface com.byeongukchoi.oauth2.server.domain.AccessToken
 
isExpired() - Method in interface com.byeongukchoi.oauth2.server.domain.AuthorizationCode
 
isExpired() - Method in interface com.byeongukchoi.oauth2.server.domain.RefreshToken
 
issueToken(AuthorizationRequestDto) - Method in class com.byeongukchoi.oauth2.server.application.AbstractGrant
 
issueToken(AuthorizationRequestDto) - Method in class com.byeongukchoi.oauth2.server.application.AuthorizationCodeGrant
authorization_code grant_type, client_id, redirect_uri, code, client_secret refresh_token grant_type, client_id, refresh_token, client_secret
issueToken(AuthorizationRequestDto) - Method in class com.byeongukchoi.oauth2.server.application.RefreshTokenGrant
authorization_code grant_type, client_id, redirect_uri, code, client_secret refresh_token grant_type, client_id, refresh_token, client_secret

N

NOT_FOUND_AUTHORIZATION_CODE - com.byeongukchoi.oauth2.server.error.exception.ErrorCode
 
NOT_FOUND_REFRESH_TOKEN - com.byeongukchoi.oauth2.server.error.exception.ErrorCode
 

O

OAuth2ServerException - Exception in com.byeongukchoi.oauth2.server.error.exception
 
OAuth2ServerException(ErrorCode) - Constructor for exception com.byeongukchoi.oauth2.server.error.exception.OAuth2ServerException
 

R

RefreshToken - Interface in com.byeongukchoi.oauth2.server.domain
RefreshToken interface
RefreshTokenGrant - Class in com.byeongukchoi.oauth2.server.application
RefreshTokenGrant
RefreshTokenGrant(AccessTokenRepository<AccessToken, String>, RefreshTokenRepository<RefreshToken, String>) - Constructor for class com.byeongukchoi.oauth2.server.application.RefreshTokenGrant
 
RefreshTokenRepository<T extends RefreshToken,​ID> - Interface in com.byeongukchoi.oauth2.server.domain.repository
RefreshTokenRepository interface

S

save(S) - Method in interface com.byeongukchoi.oauth2.server.domain.repository.AuthorizationCodeRepository
 
saveNewToken(T) - Method in interface com.byeongukchoi.oauth2.server.domain.repository.AccessTokenRepository
 
saveNewToken(T) - Method in interface com.byeongukchoi.oauth2.server.domain.repository.RefreshTokenRepository
 

T

TokenDto - Class in com.byeongukchoi.oauth2.server.application.dto
Access Token Kv2gk5ZV3Hpc2En6KGeu0No9CvzcEDl9yM6Q3Qo9c04AAAFzZLkR5w Token Type bearer refresh_token EFTBp9nZvlKhFynuFbaxkh8UHJwLbI7oFhAUhAo9c04AAAFzZLkR5g expires_in 21599 scope profile refresh_token_expires_in 5183999
TokenDto(String, String, int, String, int) - Constructor for class com.byeongukchoi.oauth2.server.application.dto.TokenDto
 

U

UNKNOWN_ERROR - com.byeongukchoi.oauth2.server.error.exception.ErrorCode
 

V

valueOf(String) - Static method in enum com.byeongukchoi.oauth2.server.error.exception.ErrorCode
Returns the enum constant of this type with the specified name.
values() - Static method in enum com.byeongukchoi.oauth2.server.error.exception.ErrorCode
Returns an array containing the constants of this enum type, in the order they are declared.
verifyClient(AuthorizationRequestDto) - Method in interface com.byeongukchoi.oauth2.server.domain.Client
 
A C E F G I N O R S T U V 
All Classes All Packages