4324b4eb9aef03f65c4d3ba3a603d84574db635f
[controller.git] / opendaylight / sal / yang-prototype / sal / sal-binding-broker-impl / src / main / java / org / opendaylight / controller / sal / binding / codegen / impl / RoutingPair.xtend
1 /*
2  * Copyright (c) 2013 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.controller.sal.binding.codegen.impl
9
10 import org.opendaylight.yangtools.yang.binding.BaseIdentity
11 import javassist.CtMethod
12 import java.lang.reflect.Method
13
14 @Data
15 class RoutingPair {
16
17     @Property
18     val Class<? extends BaseIdentity> context;
19     @Property
20     val CtMethod getter;
21 }