Developer 역할 Spring 골격 smoke (runtime-role-matrix-live-20260714111146-v10-developer-001)

This commit is contained in:
forge-bot 2026-07-14 11:13:26 +00:00
parent 80ed9f7aa9
commit 604376f52b

View file

@ -0,0 +1,19 @@
package com.developer.service;
import org.springframework.stereotype.Service;
@Service
public class DeveloperService {
public String getRole() {
return "Developer";
}
public String getRoleDescription() {
return "Software Developer responsible for implementation";
}
public boolean isValidRole(String role) {
return "Developer".equals(role);
}
}