0ee9bf352b489ed1f2c835d4414900c501bb1647
[mdsal.git] / yang / yang-binding / src / main / java / org / opendaylight / yangtools / yang / binding / annotations / RoutingContext.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. 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.yangtools.yang.binding.annotations;\r
9 \r
10 import java.lang.annotation.Documented;\r
11 import java.lang.annotation.ElementType;\r
12 import java.lang.annotation.Inherited;\r
13 import java.lang.annotation.Retention;\r
14 import java.lang.annotation.RetentionPolicy;\r
15 import java.lang.annotation.Target;\r
16 \r
17 import org.opendaylight.yangtools.yang.binding.BaseIdentity;\r
18 \r
19 \r
20 @Inherited\r
21 @Documented\r
22 @Target(ElementType.METHOD)\r
23 @Retention(RetentionPolicy.RUNTIME)\r
24 public @interface RoutingContext {\r
25 \r
26     Class<? extends BaseIdentity> value();\r
27 }\r