summaryrefslogtreecommitdiffstats
path: root/controller-api
diff options
context:
space:
mode:
authorJon Marius Venstad <jvenstad@yahoo-inc.com>2018-06-22 12:14:32 +0200
committerJon Marius Venstad <jvenstad@yahoo-inc.com>2018-07-02 13:42:47 +0200
commit3dee94396f87eae9ec5c421a407333b01d1c7853 (patch)
treef8924579f056c98fe166929c64286fd17134150c /controller-api
parent39673be2199068018cd68b6cea2e055be56475b9 (diff)
Add setting for where to build stuff
Diffstat (limited to 'controller-api')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/LogStore.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/LogStore.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/LogStore.java
index a4093bc80af..07cdff9a9f4 100644
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/LogStore.java
+++ b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/LogStore.java
@@ -4,6 +4,9 @@ import com.yahoo.config.provision.ApplicationId;
import com.yahoo.vespa.hosted.controller.api.integration.configserver.PrepareResponse;
import com.yahoo.vespa.hosted.controller.api.integration.deployment.JobType;
+/**
+ * @author freva
+ */
public interface LogStore {
/** @return the test log of the given deployment job. */
@@ -26,4 +29,5 @@ public interface LogStore {
/** Deletes all data associated with test of a given deployment job */
void deleteTestData(ApplicationId applicationId, JobType jobType, long buildId);
+
}