Simplify CommonService interface
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / services / NodeConfigServiceImpl.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.device.DeviceContext;
12 import org.opendaylight.openflowplugin.api.openflow.device.RequestContextStack;
13 import org.opendaylight.openflowplugin.api.openflow.device.Xid;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.module.config.rev141015.NodeConfigService;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.module.config.rev141015.SetConfigInput;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.module.config.rev141015.SetConfigOutput;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.SwitchConfigFlag;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.OfHeader;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.SetConfigInputBuilder;
20 import org.opendaylight.yangtools.yang.common.RpcResult;
21
22 public final class NodeConfigServiceImpl extends AbstractSimpleService<SetConfigInput, SetConfigOutput> implements NodeConfigService {
23     public NodeConfigServiceImpl(final RequestContextStack requestContextStack, final DeviceContext deviceContext) {
24         super(requestContextStack, deviceContext, SetConfigOutput.class);
25     }
26
27     @Override
28     public Future<RpcResult<SetConfigOutput>> setConfig(final SetConfigInput input) {
29         return handleServiceCall(input);
30     }
31
32     @Override
33     protected OfHeader buildRequest(final Xid xid, final SetConfigInput input) {
34         SetConfigInputBuilder builder = new SetConfigInputBuilder();
35         SwitchConfigFlag flag = SwitchConfigFlag.valueOf(input.getFlag());
36
37         builder.setXid(xid.getValue());
38         builder.setFlags(flag);
39         builder.setMissSendLen(input.getMissSearchLength());
40         builder.setVersion(getVersion());
41         return builder.build();
42     }
43 }