383136be3986ebcec52e210c592da3b142e75aad
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / rpc / RequestContextImpl.java
1 /**
2  * Copyright (c) 2015 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.impl.rpc;
9
10 import com.google.common.util.concurrent.SettableFuture;
11 import org.opendaylight.openflowplugin.api.openflow.device.RequestContext;
12 import org.opendaylight.openflowplugin.api.openflow.rpc.RpcContext;
13 import org.opendaylight.yangtools.yang.binding.DataObject;
14 import org.opendaylight.yangtools.yang.common.RpcResult;
15 import java.util.concurrent.Future;
16
17 /**
18  * @author joe
19  */
20 public class RequestContextImpl<T extends DataObject> implements RequestContext {
21
22     private final RpcContext rpcContext;
23     private SettableFuture<RpcResult<T>> rpcResultFuture;
24
25     public RequestContextImpl(RpcContext rpcContext) {
26         this.rpcContext = rpcContext;
27     }
28
29     @Override
30     public Future<RpcResult<T>> createRequestFuture(final DataObject dataObject) {
31         rpcResultFuture = SettableFuture.create();
32         return rpcResultFuture;
33     }
34
35     @Override
36     public void requestSucceeded() {
37         
38     }
39
40     @Override
41     public void requestFailed(final String exception) {
42
43     }
44 }