summaryrefslogtreecommitdiffstats
path: root/controller-api
diff options
context:
space:
mode:
Diffstat (limited to 'controller-api')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/ArtifactRepository.java9
1 files changed, 0 insertions, 9 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/ArtifactRepository.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/ArtifactRepository.java
index 117dbd38a3b..13b16fc4cd1 100644
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/ArtifactRepository.java
+++ b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/ArtifactRepository.java
@@ -15,16 +15,7 @@ public interface ArtifactRepository {
/** Returns the tenant application package of the given version. */
byte[] getApplicationPackage(ApplicationId application, String applicationVersion);
- /** Stores the given tenant application package of the given version. */
- void putApplicationPackage(ApplicationId application, String applicationVersion, byte[] applicationPackage);
-
/** Returns the system application package of the given version. */
byte[] getSystemApplicationPackage(ApplicationId application, ZoneId zone, Version version);
- /** Stores the given tester application package of the given version. Does NOT contain the services.xml. */
- void putTesterPackage(ApplicationId tester, String applicationVersion, byte[] testerPackage);
-
- /** Returns the tester application package of the given version. Does NOT contain the services.xml. */
- byte[] getTesterPackage(ApplicationId tester, String applicationVersion);
-
}