aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-athenz
diff options
context:
space:
mode:
Diffstat (limited to 'vespa-athenz')
-rw-r--r--vespa-athenz/src/main/java/com/yahoo/vespa/athenz/identityprovider/api/bindings/IdentityDocumentApi.java26
1 files changed, 0 insertions, 26 deletions
diff --git a/vespa-athenz/src/main/java/com/yahoo/vespa/athenz/identityprovider/api/bindings/IdentityDocumentApi.java b/vespa-athenz/src/main/java/com/yahoo/vespa/athenz/identityprovider/api/bindings/IdentityDocumentApi.java
deleted file mode 100644
index fc5392411c1..00000000000
--- a/vespa-athenz/src/main/java/com/yahoo/vespa/athenz/identityprovider/api/bindings/IdentityDocumentApi.java
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package com.yahoo.vespa.athenz.identityprovider.api.bindings;
-
-import javax.ws.rs.GET;
-import javax.ws.rs.Path;
-import javax.ws.rs.PathParam;
-import javax.ws.rs.Produces;
-import javax.ws.rs.core.MediaType;
-
-/**
- * @author bjorncs
- */
-@Path("/identity-document")
-public interface IdentityDocumentApi {
-
- @GET
- @Produces(MediaType.APPLICATION_JSON)
- @Path("/node/{host}")
- SignedIdentityDocumentEntity getNodeIdentityDocument(@PathParam("host") String host);
-
-
- @GET
- @Produces(MediaType.APPLICATION_JSON)
- @Path("/tenant/{host}")
- SignedIdentityDocumentEntity getTenantIdentityDocument(@PathParam("host") String host);
-}