summaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/nodeagent/NodeAgentContextFactory.java
blob: 0cfafe34717882f4f05bfd79a0025827dbf60b3e (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.node.admin.nodeagent;

import com.yahoo.vespa.hosted.node.admin.configserver.noderepository.NodeSpec;

/**
 * @author freva
 */
@FunctionalInterface
public interface NodeAgentContextFactory {
    NodeAgentContext create(NodeSpec nodeSpec);
}