Fix for Bug 511 (yang)
[mdsal.git] / yang / yang-binding / src / main / java / org / opendaylight / yangtools / yang / binding / annotations / RoutingContext.java
index 76dac8713109307a1594c0916e03c6f8ae05fcc3..169d9ef825e25da9454676d81781fd520c6b8793 100644 (file)
@@ -1,20 +1,27 @@
-package org.opendaylight.yangtools.yang.binding.annotations;\r
-\r
-import java.lang.annotation.Documented;\r
-import java.lang.annotation.ElementType;\r
-import java.lang.annotation.Inherited;\r
-import java.lang.annotation.Retention;\r
-import java.lang.annotation.RetentionPolicy;\r
-import java.lang.annotation.Target;\r
-\r
-import org.opendaylight.yangtools.yang.binding.BaseIdentity;\r
-\r
-\r
-@Inherited\r
-@Documented\r
-@Target(ElementType.METHOD)\r
-@Retention(RetentionPolicy.RUNTIME)\r
-public @interface RoutingContext {\r
-\r
-    Class<? extends BaseIdentity> value();\r
-}\r
+/*
+ * 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.binding.annotations;
+
+import java.lang.annotation.Documented;
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Inherited;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+import org.opendaylight.yangtools.yang.binding.BaseIdentity;
+
+
+@Inherited
+@Documented
+@Target(ElementType.METHOD)
+@Retention(RetentionPolicy.RUNTIME)
+public @interface RoutingContext {
+
+    Class<? extends BaseIdentity> value();
+}