Expose NetconfKeystoreService
[netconf.git] / keystore / keystore-legacy / src / main / java / org / opendaylight / netconf / keystore / legacy / CertifiedPrivateKey.java
1 /*
2  * Copyright (c) 2024 PANTHEON.tech, s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.netconf.keystore.legacy;
9
10 import static java.util.Objects.requireNonNull;
11
12 import java.security.PrivateKey;
13 import java.security.cert.X509Certificate;
14 import java.util.List;
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16 import org.opendaylight.yangtools.concepts.Immutable;
17
18 @NonNullByDefault
19 public record CertifiedPrivateKey(
20         PrivateKey key,
21         List<X509Certificate> certificateChain) implements Immutable {
22     public CertifiedPrivateKey {
23         requireNonNull(key);
24         certificateChain = List.copyOf(certificateChain);
25         if (certificateChain.isEmpty()) {
26             throw new IllegalArgumentException("Certificate chain must not be empty");
27         }
28     }
29 }