summaryrefslogtreecommitdiffstats
path: root/node-repository/src/test/java/com/yahoo/vespa/hosted/provision/provisioning/AllocationSnapshot.java
blob: 80e9670546d19430548f55399d7fd004decfb482 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
    }
}