@ConfigurationProperties(prefix="my-org.cli.security") | |
public class CommandLineSecurityConfigurer { | |
/** | |
* The role a user must have to run the application. | |
*/ | |
private String requiredRole; | |
public String getRequiredRole() { | |
return requiredRole; | |
} | |
public void setRequiredRole(String requiredRole) { | |
this.requiredRole = requiredRole; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment