use of com.thoughtworks.go.config.update.ElasticAgentProfileUpdateCommand in project gocd by gocd.
the class ElasticProfileService method update.
public void update(Username currentUser, String md5, ElasticProfile newProfile, LocalizedOperationResult result) {
ElasticAgentProfileUpdateCommand command = new ElasticAgentProfileUpdateCommand(goConfigService, newProfile, elasticAgentExtension, currentUser, result, hashingService, md5);
update(currentUser, newProfile, result, command);
}
Aggregations