aboutsummaryrefslogtreecommitdiffstats
path: root/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/maintenance/retire/RetirementPolicy.java
blob: d1147b64dbad614e5a012b6e78046501fa3527e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.provision.maintenance.retire;

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

/**
 * @author freva
 */
public interface RetirementPolicy {
    boolean shouldRetire(Node node);
}