Bump ietf-keystore to 2022-12-12
[netconf.git] / keystore / keystore-none / src / main / java / org / opendaylight / netconf / keystore / none / NoneKeystoreFeatureProvider.java
1 /*
2  * Copyright (c) 2022 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.none;
9
10 import java.util.Set;
11 import org.eclipse.jdt.annotation.NonNullByDefault;
12 import org.kohsuke.MetaInfServices;
13 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.keystore.rev221212.AsymmetricKeys;
14 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.keystore.rev221212.IetfKeystoreData;
15 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.keystore.rev221212.LocalDefinitionsSupported;
16 import org.opendaylight.yangtools.yang.binding.YangFeature;
17 import org.opendaylight.yangtools.yang.binding.YangFeatureProvider;
18
19 /**
20  * Simple implementation, which advertizes we do not have a central keystore and support asymmetric keys only.
21  */
22 @MetaInfServices
23 @NonNullByDefault
24 public final class NoneKeystoreFeatureProvider implements YangFeatureProvider<IetfKeystoreData> {
25     @Override
26     public Class<IetfKeystoreData> boundModule() {
27         return IetfKeystoreData.class;
28     }
29
30     @Override
31     public Set<? extends YangFeature<?, IetfKeystoreData>> supportedFeatures() {
32         return Set.of(LocalDefinitionsSupported.VALUE, AsymmetricKeys.VALUE);
33     }
34 }