summaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/billing/Plan.java
diff options
context:
space:
mode:
Diffstat (limited to 'controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/billing/Plan.java')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/billing/Plan.java24
1 files changed, 24 insertions, 0 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/billing/Plan.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/billing/Plan.java
new file mode 100644
index 00000000000..0df7fcefabe
--- /dev/null
+++ b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/billing/Plan.java
@@ -0,0 +1,24 @@
+// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+package com.yahoo.vespa.hosted.controller.api.integration.billing;
+
+/**
+ * A Plan knows about the billing calculations and the default quota for any tenant associated with the Plan.
+ * The Plan can also enforce transitions from one plan to another.
+ *
+ * @author ogronnesby
+ */
+public interface Plan {
+
+ /** Unique ID for the plan */
+ PlanId id();
+
+ /** A string to be used for display purposes */
+ String displayName();
+
+ /** The cost calculator for this plan */
+ CostCalculator calculator();
+
+ /** The quota for this plan */
+ QuotaCalculator quota();
+
+}