aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-athenz
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@verizonmedia.com>2021-04-23 15:49:27 +0200
committerBjørn Christian Seime <bjorncs@verizonmedia.com>2021-04-23 15:49:27 +0200
commit9b0a97fc953cde5091204db6139b7cf40459002e (patch)
tree2f7411a2077c27bb50b3bf073a89d59b84d09352 /vespa-athenz
parent93e34a71a2b04a9e4297c1b653b92b16dae51e8f (diff)
Remove old Jaxrs resource definitions from vespa-athenz
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);
-}