use of com.thoughtworks.go.config.update.RoleConfigUpdateCommand in project gocd by gocd.
the class RoleConfigService method update.
public void update(Username currentUser, String md5, Role newRole, LocalizedOperationResult result) {
validatePluginRoleMetadata(newRole);
update(currentUser, newRole, result, new RoleConfigUpdateCommand(goConfigService, newRole, authorizationExtension, currentUser, result, hashingService, md5));
}
Aggregations