runtime-role-matrix-live-20.../src/main/java/com/example/developer/DeveloperService.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;
}
}