Merge "Update xtend and embed it"
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / codec / IdentifierCodec.java
index b8bab878e07c6dafbf142e3392c48de1fbbc893d..99645a3152656edcfeb045d84876c0d9687e7994 100644 (file)
@@ -1,3 +1,10 @@
+/*
+ * 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.Identifier;
@@ -5,10 +12,9 @@ import org.opendaylight.yangtools.yang.data.api.CompositeNode;
 import org.opendaylight.yangtools.yang.data.api.Node;
 
 public interface IdentifierCodec<I extends Identifier<?>> extends DomCodec<I> {
-
     @Override
-    public ValueWithQName<I> deserialize(Node<?> input);
+    ValueWithQName<I> deserialize(Node<?> input);
 
     @Override
-    public CompositeNode serialize(ValueWithQName<I> input);
+    CompositeNode serialize(ValueWithQName<I> input);
 }