public GrantConfiguration roles(String[] roles) {
list = new ArrayList<Role>();
for (String role : roles) {
Role newRole = identityManager.getRole(role);
if (newRole == null) {
newRole = new SimpleRole(role);
identityManager.add(newRole);
}
list.add(newRole);
}
return this;