BUG-1997: moving barrier after message
[openflowplugin.git] / openflowplugin / src / main / java / org / opendaylight / openflowplugin / openflow / md / util / RpcInputOutputTuple.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.openflowplugin.openflow.md.util;
9
10 /**
11  * @param <IN> rpc input value type
12  * @param <OUT> rpc output value type
13  */
14 public class RpcInputOutputTuple<IN, OUT> {
15     
16     private IN input;
17     private OUT output;
18     
19     
20     /**
21      * @param input
22      * @param output
23      */
24     public RpcInputOutputTuple(IN input, OUT output) {
25         this.input = input;
26         this.output = output;
27     }
28     
29     /**
30      * @return the input
31      */
32     public IN getInput() {
33         return input;
34     }
35     /**
36      * @return the output
37      */
38     public OUT getOutput() {
39         return output;
40     }
41
42 }