summaryrefslogtreecommitdiffstats
path: root/vespa-athenz
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@oath.com>2018-05-16 14:56:02 +0200
committerBjørn Christian Seime <bjorncs@oath.com>2018-05-16 14:56:02 +0200
commit2ba4b5890a2b9a4f308d7025370be1a3af4668f0 (patch)
tree76f995a9c257d2f0c56ea1cbc0866c54d9f10d4a /vespa-athenz
parent18331af5181c402fa517c8a62d37551510fb4901 (diff)
Remove use of deprecated entity types
Diffstat (limited to 'vespa-athenz')
-rw-r--r--vespa-athenz/src/main/java/com/yahoo/vespa/athenz/identityprovider/api/bindings/IdentityDocumentApi.java6
1 files changed, 3 insertions, 3 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
index 80aaa72d4bf..775a49349a3 100644
--- 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
@@ -17,16 +17,16 @@ public interface IdentityDocumentApi {
@GET
@Produces(MediaType.APPLICATION_JSON)
@Deprecated
- SignedIdentityDocument getIdentityDocument(@QueryParam("hostname") String hostname);
+ SignedIdentityDocumentEntity getIdentityDocument(@QueryParam("hostname") String hostname);
@GET
@Produces(MediaType.APPLICATION_JSON)
@Path("/node/{host}")
- SignedIdentityDocument getNodeIdentityDocument(@PathParam("host") String host);
+ SignedIdentityDocumentEntity getNodeIdentityDocument(@PathParam("host") String host);
@GET
@Produces(MediaType.APPLICATION_JSON)
@Path("/tenant/{host}")
- SignedIdentityDocument getTenantIdentityDocument(@PathParam("host") String host);
+ SignedIdentityDocumentEntity getTenantIdentityDocument(@PathParam("host") String host);
}