fce8e93019230b0ba6c7c94a9d0dbef398a28409
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / statistics / services / GroupFeaturesService.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.statistics.services;
9
10 import org.opendaylight.openflowplugin.api.openflow.device.DeviceContext;
11 import org.opendaylight.openflowplugin.api.openflow.device.RequestContextStack;
12 import org.opendaylight.openflowplugin.api.openflow.device.Xid;
13 import org.opendaylight.openflowplugin.impl.services.AbstractSimpleService;
14 import org.opendaylight.openflowplugin.impl.services.RequestInputUtils;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.group.statistics.rev131111.GetGroupFeaturesInput;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.group.statistics.rev131111.GetGroupFeaturesOutput;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.MultipartType;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.MultipartRequestInputBuilder;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.OfHeader;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.multipart.request.multipart.request.body.MultipartRequestGroupFeaturesCase;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.multipart.request.multipart.request.body.MultipartRequestGroupFeaturesCaseBuilder;
22
23 final class GroupFeaturesService extends AbstractSimpleService<GetGroupFeaturesInput, GetGroupFeaturesOutput> {
24     private static final MultipartRequestGroupFeaturesCase GROUP_FEAT_CASE =
25             new MultipartRequestGroupFeaturesCaseBuilder().build();
26
27     GroupFeaturesService(final RequestContextStack requestContextStack, final DeviceContext deviceContext) {
28         super(requestContextStack, deviceContext, GetGroupFeaturesOutput.class);
29     }
30
31     @Override
32     protected OfHeader buildRequest(final Xid xid, final GetGroupFeaturesInput input) {
33         final MultipartRequestInputBuilder mprInput = RequestInputUtils.createMultipartHeader(
34                 MultipartType.OFPMPGROUPFEATURES, xid.getValue(), getVersion());
35         mprInput.setMultipartRequestBody(GROUP_FEAT_CASE);
36         return mprInput.build();
37     }
38 }