19 lines
398 B
Java
19 lines
398 B
Java
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);
|
|
}
|
|
}
|