summaryrefslogtreecommitdiffstats
path: root/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/LockedStep.java
blob: d1d3e6238fd468024496a98c9fc5236e720e012a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.deployment;

import com.yahoo.vespa.curator.Lock;

public class LockedStep {

    private final Step step;
    LockedStep(Lock lock, Step step) { this.step = step; }
    public Step get() { return step; }

}