aboutsummaryrefslogtreecommitdiffstats
path: root/zookeeper-server/zookeeper-server-common/src/main/java/com/yahoo/vespa/zookeeper/DummyVespaZooKeeperServer.java
blob: cc3d5117241a1530ca0635077b10b4b144c2d8fc (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.zookeeper;

import com.yahoo.component.annotation.Inject;
import com.yahoo.component.AbstractComponent;

import java.nio.file.Path;

/**
 * A dummy {@link VespaZooKeeperServer} implementation that can be used when a container cluster is not configured with standalone ZK cluster.
 *
 * @author bjorncs
 */
public class DummyVespaZooKeeperServer extends AbstractComponent implements VespaZooKeeperServer {

    @Inject public DummyVespaZooKeeperServer() {}

    @Override
    public void shutdown() {}

    @Override
    public void start(Path configFilePath) {}

    @Override
    public boolean reconfigurable() {
        return false;
    }

}