aboutsummaryrefslogtreecommitdiffstats
path: root/container-disc/src/main/java/com/yahoo/container/jdisc/athenz/AthenzIdentityProvider.java
diff options
context:
space:
mode:
authorMorten Tokle <mortent@oath.com>2017-12-18 15:23:38 +0100
committerMorten Tokle <mortent@oath.com>2017-12-18 15:39:41 +0100
commit8301dd3b810c42f0bd8bf9e170180c7d7afadfce (patch)
tree4c1b0eeef93825da72518fb8943d3970974c1d06 /container-disc/src/main/java/com/yahoo/container/jdisc/athenz/AthenzIdentityProvider.java
parent5b94a6b3da9aaf080e60b38689c02113de1acb43 (diff)
Setup ssl context in Athenz identity provider
Diffstat (limited to 'container-disc/src/main/java/com/yahoo/container/jdisc/athenz/AthenzIdentityProvider.java')
-rw-r--r--container-disc/src/main/java/com/yahoo/container/jdisc/athenz/AthenzIdentityProvider.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/container-disc/src/main/java/com/yahoo/container/jdisc/athenz/AthenzIdentityProvider.java b/container-disc/src/main/java/com/yahoo/container/jdisc/athenz/AthenzIdentityProvider.java
index 033b396bc9b..c4c57f4bc47 100644
--- a/container-disc/src/main/java/com/yahoo/container/jdisc/athenz/AthenzIdentityProvider.java
+++ b/container-disc/src/main/java/com/yahoo/container/jdisc/athenz/AthenzIdentityProvider.java
@@ -1,6 +1,8 @@
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container.jdisc.athenz;
+import javax.net.ssl.SSLContext;
+
/**
* @author mortent
*/
@@ -8,4 +10,5 @@ public interface AthenzIdentityProvider {
String getNToken() throws AthenzIdentityProviderException;
String getDomain();
String getService();
+ SSLContext getSslContext();
}