-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[신성수] 인가(Authorization) 리뷰 요청 드립니다. #28
Open
shinseongsu
wants to merge
20
commits into
next-step:shinseongsu
Choose a base branch
from
shinseongsu:step1
base: shinseongsu
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+560
−36
Open
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
1dd4a35
feat: Authenticated 인가 허용 할 수 있는지 로직 추가
DANAL-EVAN cbaadb0
feat: AuthorityAuthorizationManager 기능 추가
DANAL-EVAN 0106339
feat: 인가 상태정의 enum
DANAL-EVAN 9ff668a
feat; AuthenticationManger 인터페이스 추가
DANAL-EVAN 814f823
feat: 무조건 허용 및 허용하지 않는 옵션추가
DANAL-EVAN ac8a793
feat: 인증 결과 값 추가
DANAL-EVAN d682f6d
feat: 각 url 별 인가 설정 수정
DANAL-EVAN 9f0f2fa
feat: member me url 추가
DANAL-EVAN 445bab9
feat: 어노테이션별 권한체크 로직 수정
DANAL-EVAN f048ae3
feat: request AuthorizationManger entry 체크 로직 추가
DANAL-EVAN 686f74f
feat: RequestMatcher Entry 추가
DANAL-EVAN 2c694df
feat: Matcher 인터페이스 추가
DANAL-EVAN a5e8768
feat: Mvc interface 추가
DANAL-EVAN 0a0cdf2
feat: 모든값이 true인 matcher 추가
DANAL-EVAN b2297e9
feat: secured 어노테이션에서 사용 용도 manger 추가
DANAL-EVAN 78a77a0
feat: authenticationFilter 추가
DANAL-EVAN b73d136
feat: filter Proxy 예외 처리 추가
DANAL-EVAN db26ae5
fix: Servelt, IO Exception 던지도록 수정
DANAL-EVAN cd6fa2f
test: 테스트 코드 추가
DANAL-EVAN 713f5eb
docs: 요구사항 정리
DANAL-EVAN File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
feat: 인증 결과 값 추가
commit ac8a7939c688d0c7d3f0ee69444625f140916c87
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
src/main/java/nextstep/security/authorization/manager/AuthorizationResult.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package nextstep.security.authorization.manager; | ||
|
||
public interface AuthorizationResult { | ||
boolean isGranted(); | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
미션내의 요구사항은
AuthorizationDecision
이었으나 최근 버전에서의 추상화를 잘 구현해주셨네요