summaryrefslogtreecommitdiffstats
path: root/vespa-athenz
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@oath.com>2018-06-20 13:07:34 +0200
committerBjørn Christian Seime <bjorncs@oath.com>2018-06-20 13:15:11 +0200
commitf262a027cbe5c49974dd13675bbe41d987947460 (patch)
treebe76e8badafa2b5492164bf2a3dd2be014251696 /vespa-athenz
parent65ff10dfd5747864c8309b866b17d812a4c5daa6 (diff)
Remove unused class
Diffstat (limited to 'vespa-athenz')
-rw-r--r--vespa-athenz/src/main/java/com/yahoo/vespa/athenz/api/AthenzIdentityCertificate.java27
1 files changed, 0 insertions, 27 deletions
diff --git a/vespa-athenz/src/main/java/com/yahoo/vespa/athenz/api/AthenzIdentityCertificate.java b/vespa-athenz/src/main/java/com/yahoo/vespa/athenz/api/AthenzIdentityCertificate.java
deleted file mode 100644
index 0e9e9432790..00000000000
--- a/vespa-athenz/src/main/java/com/yahoo/vespa/athenz/api/AthenzIdentityCertificate.java
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package com.yahoo.vespa.athenz.api;
-
-import java.security.PrivateKey;
-import java.security.cert.X509Certificate;
-
-/**
- * @author bjorncs
- */
-public class AthenzIdentityCertificate {
-
- private final X509Certificate certificate;
- private final PrivateKey privateKey;
-
- public AthenzIdentityCertificate(X509Certificate certificate, PrivateKey privateKey) {
- this.certificate = certificate;
- this.privateKey = privateKey;
- }
-
- public X509Certificate getCertificate() {
- return certificate;
- }
-
- public PrivateKey getPrivateKey() {
- return privateKey;
- }
-}