0444b74122ebc51c999b0096525a96c3db8eeda3
[openflowplugin.git] / extension / openflowplugin-extension-api / src / main / java / org / opendaylight / openflowplugin / extension / api / BundleMessageDataInjector.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
9 package org.opendaylight.openflowplugin.extension.api;
10
11 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeRef;
12
13 /**
14  * Interface for bundle data injection
15  */
16 public interface BundleMessageDataInjector {
17     /**
18      * Set xid
19      * @param xid request id
20      */
21     void setXid(long xid);
22
23     /**
24      * Set node id
25      * @param node node id
26      */
27     void setNode(NodeRef node);
28
29 }