Merge "IllegalArgumentException with metadata field in learn action"
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / services / sal / 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.sal;
9
10 import com.google.common.util.concurrent.ListenableFuture;
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.openflowplugin.impl.services.AbstractSimpleService;
15 import org.opendaylight.openflowplugin.impl.services.util.ServiceException;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.module.config.rev141015.NodeConfigService;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.module.config.rev141015.SetConfigInput;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.module.config.rev141015.SetConfigOutput;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.SwitchConfigFlag;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.OfHeader;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.SetConfigInputBuilder;
22 import org.opendaylight.yangtools.yang.common.RpcResult;
23
24 public final class NodeConfigServiceImpl extends AbstractSimpleService<SetConfigInput, SetConfigOutput>
25                                          implements NodeConfigService {
26     public NodeConfigServiceImpl(final RequestContextStack requestContextStack, final DeviceContext deviceContext) {
27         super(requestContextStack, deviceContext, SetConfigOutput.class);
28     }
29
30     @Override
31     public ListenableFuture<RpcResult<SetConfigOutput>> setConfig(final SetConfigInput input) {
32         return handleServiceCall(input);
33     }
34
35     @Override
36     protected OfHeader buildRequest(final Xid xid, final SetConfigInput input) throws ServiceException {
37         SetConfigInputBuilder builder = new SetConfigInputBuilder();
38         SwitchConfigFlag flag = SwitchConfigFlag.valueOf(input.getFlag());
39
40         builder.setXid(xid.getValue());
41         builder.setFlags(flag);
42         builder.setMissSendLen(input.getMissSearchLength());
43         builder.setVersion(getVersion());
44         return builder.build();
45     }
46 }