summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/vespa/model/application/validation/change/VespaRestartAction.java
blob: 1974847a83cc06b190ea22209eae413de62aa7e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.model.application.validation.change;

import com.yahoo.config.model.api.ConfigChangeRestartAction;
import com.yahoo.config.model.api.ServiceInfo;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

/**
 * Represents an action to restart services in order to handle a config change.
 *
 * @author geirst
 * @since 5.43
 */
public class VespaRestartAction extends VespaConfigChangeAction implements ConfigChangeRestartAction {

    public VespaRestartAction(String message) {
        super(message, new ArrayList<>());
    }

    public VespaRestartAction(String message, ServiceInfo service) {
        super(message, Collections.singletonList(service));
    }

    public VespaRestartAction(String message, List<ServiceInfo> services) {
        super(message, services);
    }

    @Override
    public VespaConfigChangeAction modifyAction(String newMessage, List<ServiceInfo> newServices, String documentType) {
        return new VespaRestartAction(newMessage, newServices);
    }

}