Rename ContainerNodeCodecContext
[mdsal.git] / binding / mdsal-binding-dom-codec / src / main / java / org / opendaylight / mdsal / binding / dom / codec / impl / RpcInputCodec.java
1 /*
2  * Copyright (c) 2017 Pantheon Technologies, 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 org.opendaylight.mdsal.binding.dom.codec.api.BindingNormalizedNodeCodec;
11 import org.opendaylight.mdsal.binding.dom.codec.api.BindingNormalizedNodeSerializer;
12 import org.opendaylight.yangtools.yang.binding.DataObject;
13
14 /**
15  * Marker interface for codecs dealing with RPC input being potentially unmapped. We use this interface to mark both
16  * {@link UnmappedRpcInputCodec} and {@link ContainerLikeCodecContext}, which results in bimorphic invocation in
17  * {@link BindingNormalizedNodeSerializer#fromNormalizedNodeRpcData()}.
18  *
19  * <p>
20  * Without this interface we could end up with megamorphic invocation, as the two implementations cannot share class
21  * hierarchy.
22  *
23  * @author Robert Varga
24  *
25  * @param <T> Binding representation of data
26  */
27 interface RpcInputCodec<D extends DataObject> extends BindingNormalizedNodeCodec<D> {
28
29 }