RpcContext and RequestContext API fine tuning
[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.yangtools.yang.binding.DataObject;
13 import org.opendaylight.yangtools.yang.common.RpcResult;
14 import java.util.concurrent.Future;
15
16 /**
17  * @author joe
18  */
19 public class RequestContextImpl implements RequestContext {
20
21     private final Future<RpcResult<? extends DataObject>> result;
22     private SettableFuture requestFuture;
23
24     public RequestContextImpl(final Future<RpcResult<? extends DataObject>> result) {
25         this.result = result;
26     }
27
28     @Override
29     public <T extends DataObject> Future<RpcResult<T>> createRequestFuture(final DataObject dataObject) {
30         requestFuture = SettableFuture.create();
31         return requestFuture;
32     }
33
34     @Override
35     public void requestSucceeded() {
36         
37     }
38
39     @Override
40     public void requestFailed(final String exception) {
41
42     }
43 }