Merge "Improve logging"
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / codec / DataStringCodec.java
index 62968c7c9ef0adf959a3b76054948cfcff219c3d..7fa37384f95e911b17789ad2d4f59ec09e1bb377 100644 (file)
@@ -1,6 +1,15 @@
+/*
+ * Copyright (c) 2013 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;
 
-public interface DataStringCodec<T> {
+import org.opendaylight.yangtools.concepts.Codec;
+
+public interface DataStringCodec<T> extends Codec<String, T> {
     
     Class<T> getInputClass();