Skip to content
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
wants to merge 20 commits into
base: shinseongsu
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat: 인증 결과 값 추가
DANAL-EVAN committed Feb 16, 2025
commit ac8a7939c688d0c7d3f0ee69444625f140916c87
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package nextstep.security.authorization.manager;

public interface AuthorizationResult {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

미션내의 요구사항은 AuthorizationDecision이었으나 최근 버전에서의 추상화를 잘 구현해주셨네요

boolean isGranted();
}