Merge "BUG-869: removed useless null check from DataValidationException.checkListKey"
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / codec / DataContainerCodec.java
index 6e6e9685b106440bbc7611e07056524248cf8847..aaa51ce1b9505ed7a5dc32dc5268733361673bfb 100644 (file)
@@ -1,15 +1,25 @@
+/*
+ * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
 package org.opendaylight.yangtools.yang.data.impl.codec;
 
 import org.opendaylight.yangtools.yang.binding.DataContainer;
+import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 import org.opendaylight.yangtools.yang.data.api.CompositeNode;
 import org.opendaylight.yangtools.yang.data.api.Node;
 
-public interface DataContainerCodec<T extends DataContainer> extends  DomCodec<T> {
-
+public interface DataContainerCodec<T extends DataContainer> extends DomCodec<T> {
 
     @Override
-    public ValueWithQName<T> deserialize(Node<?> input);
+    CompositeNode serialize(ValueWithQName<T> input);
 
     @Override
-    public CompositeNode serialize(ValueWithQName<T> input);
+    ValueWithQName<T> deserialize(Node<?> input);
+
+    ValueWithQName<T> deserialize(Node<?> input, InstanceIdentifier<?> bindingIdentifier);
+
 }