Developer 역할 Spring 골격 smoke #4

Showing only changes of commit 604376f52b - Show all commits

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);
}
}