aboutsummaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/jdisc/http/CertificateStore.java
diff options
context:
space:
mode:
Diffstat (limited to 'container-core/src/main/java/com/yahoo/jdisc/http/CertificateStore.java')
-rw-r--r--container-core/src/main/java/com/yahoo/jdisc/http/CertificateStore.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/container-core/src/main/java/com/yahoo/jdisc/http/CertificateStore.java b/container-core/src/main/java/com/yahoo/jdisc/http/CertificateStore.java
new file mode 100644
index 00000000000..3a63726b951
--- /dev/null
+++ b/container-core/src/main/java/com/yahoo/jdisc/http/CertificateStore.java
@@ -0,0 +1,26 @@
+// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+package com.yahoo.jdisc.http;
+
+/**
+ * A store of certificates. An implementation can be plugged in to provide certificates to components who use it.
+ *
+ * @author bratseth
+ */
+public interface CertificateStore {
+
+ /** Returns a certificate for a given appid, using the default TTL and retry time */
+ default String getCertificate(String appid) { return getCertificate(appid, 0L, 0L); }
+
+ /** Returns a certificate for a given appid, using a TTL and default retry time */
+ default String getCertificate(String appid, long ttl) { return getCertificate(appid, ttl, 0L); }
+
+ /**
+ * Returns a certificate for a given appid, using a TTL and default retry time
+ *
+ * @param ttl certificate TTL in ms. Use the default TTL if set to 0
+ * @param retry if no certificate is found, allow access to cert DB again in
+ * "retry" ms. Use the default retry time if set to 0.
+ */
+ String getCertificate(String appid, long ttl, long retry);
+
+}