summaryrefslogtreecommitdiffstats
path: root/controller-api
diff options
context:
space:
mode:
authorJon Marius Venstad <jvenstad@yahoo-inc.com>2018-11-08 13:43:58 +0100
committerJon Marius Venstad <jvenstad@yahoo-inc.com>2018-11-08 13:43:58 +0100
commita728be39e5d52be15df0ce17edb79e94c72f072f (patch)
treec2bdd46118bd3987dc8cd3922bcb040f56107f30 /controller-api
parent2eb9454e7c64abe8226ab30715c5d10965f707ba (diff)
Remove unused code
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);
-
}