aboutsummaryrefslogtreecommitdiffstats
path: root/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/RetriggerEntry.java
blob: f3bf5b2062d344b0cf806ad4ca7282cfbc9cb2ac (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
// Copyright Vespa.ai. 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.hosted.controller.api.integration.deployment.JobId;

/**
 * @author mortent
 */
public class RetriggerEntry {
    private final JobId jobId;
    private final long requiredRun;

    public RetriggerEntry(JobId jobId, long requiredRun) {
        this.jobId = jobId;
        this.requiredRun = requiredRun;
    }

    public JobId jobId() {
        return jobId;
    }

    public long requiredRun() {
        return requiredRun;
    }

}