summaryrefslogtreecommitdiffstats
path: root/clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/database/DatabaseFactory.java
blob: 6419e5f05e7f1e72d26edcbd5bbb5fe761d35c9d (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.clustercontroller.core.database;

/**
 * Database factory to enable test mocking of DB features. In practice, this
 * will always be {@link ZooKeeperDatabase} due to rather heavy ZK feature
 * dependencies and leaky abstractions built on top of them.
 */
public interface DatabaseFactory {

    class Params {
        public String dbAddress;
        public int dbSessionTimeout;
        public Database.DatabaseListener listener;

        Params databaseAddress(String address) { this.dbAddress = address; return this; }
        Params databaseSessionTimeout(int timeout) { this.dbSessionTimeout = timeout; return this; }
        Params databaseListener(Database.DatabaseListener listener) { this.listener = listener; return this; }
    }

    Database create(Params params) throws Exception;

}