aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-athenz/src/main/java/com/yahoo/vespa/athenz/identityprovider/api/IdentityDocumentClient.java
blob: 5a0f77ec7652794d0660d8953fd22689ff059ecc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.athenz.identityprovider.api;

/**
 * A client that communicates that fetches an identity document.
 *
 * @author bjorncs
 */
public interface IdentityDocumentClient {
    SignedIdentityDocument getNodeIdentityDocument(String host);
    SignedIdentityDocument getTenantIdentityDocument(String host);
}