19 lines
359 B
Java
19 lines
359 B
Java
package com.example.developer;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
@Service
|
|
public class DeveloperService {
|
|
|
|
public String getRole() {
|
|
return "Developer";
|
|
}
|
|
|
|
public String getRoleDescription() {
|
|
return "Developer role with Spring Boot capabilities";
|
|
}
|
|
|
|
public boolean isActive() {
|
|
return true;
|
|
}
|
|
}
|