summaryrefslogtreecommitdiffstats
path: root/tenant-cd-api/src/main/java/ai/vespa/hosted/cd/internal/TestRuntimeProvider.java
blob: e97fa5faf8553e88007187c74a01551df2db0ef2 (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 Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package ai.vespa.hosted.cd.internal;

import ai.vespa.hosted.cd.TestRuntime;
import com.yahoo.component.AbstractComponent;

import java.util.concurrent.atomic.AtomicReference;

/**
 * @author mortent
 */
public class TestRuntimeProvider extends AbstractComponent {

    private static final AtomicReference<TestRuntime> testRuntime = new AtomicReference<>();

    public TestRuntimeProvider(TestRuntime testRuntime) {
        TestRuntimeProvider.testRuntime.set(testRuntime);
    }

    public static TestRuntime getTestRuntime() {
        return testRuntime.get();
    }

    @Override
    public void deconstruct() {
        super.deconstruct();
        testRuntime.set(null);
    }
}