Developer 역할 Spring 골격 smoke #4

Showing only changes of commit 5608dd1e28 - Show all commits

View file

@ -0,0 +1,19 @@
package com.example.developer;
import org.springframework.stereotype.Service;
@Service
public class DeveloperService {
public String getRole() {
return "Developer";
}
public String getRoleDescription() {
return "Software Developer role with coding and development responsibilities";
}
public boolean isActive() {
return true;
}
}