package naming cleanup
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / services / SalFlowServiceImpl.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.services;
9
10 import java.util.concurrent.Future;
11 import org.opendaylight.openflowplugin.api.openflow.rpc.RpcContext;
12 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.AddFlowInput;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.AddFlowOutput;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.RemoveFlowInput;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.RemoveFlowOutput;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.SalFlowService;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.UpdateFlowInput;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.UpdateFlowOutput;
19 import org.opendaylight.yangtools.yang.common.RpcResult;
20 import org.slf4j.Logger;
21
22 public class SalFlowServiceImpl extends CommonService implements SalFlowService {
23
24     private static final Logger LOG = org.slf4j.LoggerFactory.getLogger(SalFlowServiceImpl.class);
25
26     /**
27      * 
28      */
29     public SalFlowServiceImpl(final RpcContext rpcContext) {
30         super(rpcContext);
31     }
32
33     /*
34      * (non-Javadoc)
35      * 
36      * @see
37      * org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.SalFlowService#addFlow(org.opendaylight.
38      * yang.gen.v1.urn.opendaylight.flow.service.rev130819.AddFlowInput)
39      */
40     @Override
41     public Future<RpcResult<AddFlowOutput>> addFlow(final AddFlowInput input) {
42         return null;
43     }
44
45     /*
46      * (non-Javadoc)
47      * 
48      * @see
49      * org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.SalFlowService#removeFlow(org.opendaylight
50      * .yang.gen.v1.urn.opendaylight.flow.service.rev130819.RemoveFlowInput)
51      */
52     @Override
53     public Future<RpcResult<RemoveFlowOutput>> removeFlow(final RemoveFlowInput input) {
54         // TODO Auto-generated method stub
55         return null;
56     }
57
58     /*
59      * (non-Javadoc)
60      * 
61      * @see
62      * org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.SalFlowService#updateFlow(org.opendaylight
63      * .yang.gen.v1.urn.opendaylight.flow.service.rev130819.UpdateFlowInput)
64      */
65     @Override
66     public Future<RpcResult<UpdateFlowOutput>> updateFlow(final UpdateFlowInput input) {
67         // TODO Auto-generated method stub
68         return null;
69     }
70
71 }