Fix checkstyle warnings for services package
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / services / multilayer / MultiLayerGroupService.java
1 /*
2  * Copyright (c) 2017 Pantheon Technologies s.r.o. 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.multilayer;
9
10 import java.util.Optional;
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.openflowplugin.openflow.md.core.sal.convertor.ConvertorExecutor;
17 import org.opendaylight.openflowplugin.openflow.md.core.sal.convertor.GroupConvertor;
18 import org.opendaylight.openflowplugin.openflow.md.core.sal.convertor.data.VersionDatapathIdConvertorData;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.group.types.rev131018.Group;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.GroupModInputBuilder;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.OfHeader;
22 import org.opendaylight.yangtools.yang.binding.DataObject;
23
24 public final class MultiLayerGroupService<I extends Group, O extends DataObject> extends AbstractSimpleService<I, O> {
25     private final ConvertorExecutor convertorExecutor;
26     private final VersionDatapathIdConvertorData data;
27
28     public MultiLayerGroupService(final RequestContextStack requestContextStack,
29                                   final DeviceContext deviceContext,
30                                   final Class<O> clazz,
31                                   final ConvertorExecutor convertorExecutor) {
32         super(requestContextStack, deviceContext, clazz);
33         this.convertorExecutor = convertorExecutor;
34         data = new VersionDatapathIdConvertorData(getVersion());
35         data.setDatapathId(getDatapathId());
36     }
37
38     @Override
39     protected OfHeader buildRequest(final Xid xid, final I input) throws ServiceException {
40         final Optional<GroupModInputBuilder> ofGroupModInput = convertorExecutor.convert(input, data);
41
42         final GroupModInputBuilder groupModInputBuilder = ofGroupModInput
43                 .orElse(GroupConvertor.defaultResult(getVersion()))
44                 .setXid(xid.getValue());
45
46         return groupModInputBuilder.build();
47     }
48 }