summaryrefslogtreecommitdiffstats
path: root/configserver/src/test/java/com/yahoo/vespa/config/server/configchange/MockRestartAction.java
blob: 1d546ae65c01ce6e30c9b211e4e6a0e6f38a439f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.config.server.configchange;

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

import java.util.List;

/**
 * @author geirst
 * @since 5.44
 */
public class MockRestartAction extends MockConfigChangeAction implements ConfigChangeRestartAction {
    public MockRestartAction(String message, List<ServiceInfo> services) {
        super(message, services);
    }
}