aboutsummaryrefslogtreecommitdiffstats
path: root/node-repository/src/test/java/com/yahoo/vespa/hosted/provision/provisioning/AllocationSnapshot.java
blob: d63f4f530d59612e785e73beb7a5ad0a2a6c0c20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.provision.provisioning;

import com.yahoo.vespa.hosted.provision.NodeList;

/**
 * @author smorgrav
 */
public class AllocationSnapshot {
    NodeList nodes;
    String message;
    String task;

    AllocationSnapshot(NodeList nodes, String task, String message) {
        this.nodes = nodes;
        this.message = message;
        this.task = task;
    }
}