Bump to odlparent-5.0.6/yangtools-3.0.10
[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 import org.opendaylight.yangtools.yang.binding.BaseIdentity;
17
18 @Inherited
19 @Documented
20 @Target(ElementType.METHOD)
21 @Retention(RetentionPolicy.RUNTIME)
22 public @interface RoutingContext {
23
24     Class<? extends BaseIdentity> value();
25 }