aboutsummaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/billing/InstrumentList.java
diff options
context:
space:
mode:
Diffstat (limited to 'controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/billing/InstrumentList.java')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/billing/InstrumentList.java39
1 files changed, 0 insertions, 39 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/billing/InstrumentList.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/billing/InstrumentList.java
deleted file mode 100644
index 559a3e8ee9c..00000000000
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/billing/InstrumentList.java
+++ /dev/null
@@ -1,39 +0,0 @@
-// 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.api.integration.billing;
-
-import java.util.ArrayList;
-import java.util.List;
-
-/**
- * @author olaa
- */
-public class InstrumentList {
-
- private String activeInstrumentId;
- private List<PaymentInstrument> instruments;
-
-
- public InstrumentList(List<PaymentInstrument> instruments) {
- this.instruments = instruments;
- }
-
- public void setActiveInstrumentId(String activeInstrumentId) {
- this.activeInstrumentId = activeInstrumentId;
- }
-
- public void addInstrument(PaymentInstrument instrument) {
- instruments.add(instrument);
- }
-
- public void addInstruments(List<PaymentInstrument> instruments) {
- instruments.addAll(instruments);
- }
-
- public String getActiveInstrumentId() {
- return activeInstrumentId;
- }
-
- public List<PaymentInstrument> getInstruments() {
- return instruments;
- }
-}