169d9ef825e25da9454676d81781fd520c6b8793
[mdsal.git] / binding / 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;
9
10 import java.lang.annotation.Documented;
11 import java.lang.annotation.ElementType;
12 import java.lang.annotation.Inherited;
13 import java.lang.annotation.Retention;
14 import java.lang.annotation.RetentionPolicy;
15 import java.lang.annotation.Target;
16
17 import org.opendaylight.yangtools.yang.binding.BaseIdentity;
18
19
20 @Inherited
21 @Documented
22 @Target(ElementType.METHOD)
23 @Retention(RetentionPolicy.RUNTIME)
24 public @interface RoutingContext {
25
26     Class<? extends BaseIdentity> value();
27 }