Binding v2 runtime - adapters - extractors
[mdsal.git] / binding2 / mdsal-binding2-api / src / main / java / org / opendaylight / mdsal / binding / javav2 / api / annotation / RoutingContext.java
1 /*
2  * Copyright (c) 2017 Pantheon Technologies s.r.o. 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.mdsal.binding.javav2.api.annotation;
9
10 import com.google.common.annotations.Beta;
11 import java.lang.annotation.Documented;
12 import java.lang.annotation.ElementType;
13 import java.lang.annotation.Inherited;
14 import java.lang.annotation.Retention;
15 import java.lang.annotation.RetentionPolicy;
16 import java.lang.annotation.Target;
17 import org.opendaylight.mdsal.binding.javav2.spec.base.BaseIdentity;
18
19 @Beta
20 @Inherited
21 @Documented
22 @Target(ElementType.METHOD)
23 @Retention(RetentionPolicy.RUNTIME)
24 public @interface RoutingContext {
25
26     Class<? extends BaseIdentity> value();
27 }