aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-athenz/src/main/java/com/yahoo/vespa/athenz/identityprovider/api/LegacySignedIdentityDocument.java
blob: dfab93b2a28a640b9ba823e7841b0d670130673a (plain) (blame)
1
2
3
4
5
6
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.athenz.identityprovider.api;

public record LegacySignedIdentityDocument(String signature, int signingKeyVersion, int documentVersion,
                                           IdentityDocument identityDocument) implements SignedIdentityDocument {
}