BAIS 권한 서비스를 Spring Java로 전환 #3

Open
forge-bot wants to merge 4 commits from forge/BAIS-E2E-MIG-001-attempt-2 into main
Showing only changes of commit 9159911f44 - Show all commits

View file

@ -0,0 +1,11 @@
package com.example;
import org.springframework.stereotype.Service;
@Service
public class AuthorizationService {
public boolean hasAccess(String userId, String resource) {
// 권한 로직을 여기에 구현합니다.
return true; // 예시로 항상 true를 반환
}
}