summaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/billing/QuotaCalculator.java
blob: 69375969d583974923c3faf205ef83e155811cfb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package com.yahoo.vespa.hosted.controller.api.integration.billing;

/**
 * Calculates the quota.  This is used in the context of a {@link Plan}.
 *
 * @author ogronnesby
 */
public interface QuotaCalculator {
    /** Calculate the quota for a given environment */
    Quota calculate();
}