use of com.thoughtworks.go.config.update.SecurityAuthConfigUpdateCommand in project gocd by gocd.
the class SecurityAuthConfigService method update.
public void update(Username currentUser, String md5, SecurityAuthConfig newSecurityAuthConfig, LocalizedOperationResult result) {
SecurityAuthConfigUpdateCommand command = new SecurityAuthConfigUpdateCommand(goConfigService, newSecurityAuthConfig, authorizationExtension, currentUser, result, hashingService, md5);
update(currentUser, newSecurityAuthConfig, result, command, true);
}
Aggregations