70b450387f2b3ad64f2c29a82434b3d1d3b61ac2
[mdsal.git] / binding / mdsal-binding-dom-codec / src / main / java / org / opendaylight / mdsal / binding / dom / codec / impl / AugmentationCodecPrototype.java
1 /*
2  * Copyright (c) 2023 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.mdsal.binding.dom.codec.impl;
9
10 import static java.util.Objects.requireNonNull;
11
12 import com.google.common.collect.ImmutableSet;
13 import org.eclipse.jdt.annotation.NonNull;
14 import org.opendaylight.mdsal.binding.runtime.api.AugmentRuntimeType;
15 import org.opendaylight.yangtools.yang.binding.DataObject;
16 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier.Item;
17 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
18
19 final class AugmentationCodecPrototype extends CommonDataObjectCodecPrototype<AugmentRuntimeType> {
20     private final @NonNull ImmutableSet<NodeIdentifier> childArgs;
21
22     @SuppressWarnings("unchecked")
23     AugmentationCodecPrototype(final Class<?> cls, final AugmentRuntimeType type, final CodecContextFactory factory,
24             final ImmutableSet<NodeIdentifier> childArgs) {
25         super(Item.of((Class<? extends DataObject>) cls), type, factory);
26         this.childArgs = requireNonNull(childArgs);
27     }
28
29     @Override
30     NodeIdentifier getYangArg() {
31         throw new UnsupportedOperationException("Augmentation does not have PathArgument address");
32     }
33
34     @Override
35     AugmentationCodecContext<?> createInstance() {
36         return new AugmentationCodecContext<>(this);
37     }
38
39     // Guaranteed to be non-empty
40     @NonNull ImmutableSet<NodeIdentifier> getChildArgs() {
41         return childArgs;
42     }
43 }