Decompose RPC implementation classes
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / statistics / services / direct / AbstractGetQueueStatistics.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
9 package org.opendaylight.openflowplugin.impl.statistics.services.direct;
10
11 import com.google.common.util.concurrent.ListenableFuture;
12 import org.opendaylight.openflowplugin.api.openflow.device.DeviceContext;
13 import org.opendaylight.openflowplugin.api.openflow.device.RequestContextStack;
14 import org.opendaylight.openflowplugin.impl.datastore.MultipartWriterProvider;
15 import org.opendaylight.openflowplugin.openflow.md.core.sal.convertor.ConvertorExecutor;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.direct.statistics.rev160511.GetQueueStatistics;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.direct.statistics.rev160511.GetQueueStatisticsInput;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.direct.statistics.rev160511.GetQueueStatisticsOutput;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.MultipartType;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.OfHeader;
21 import org.opendaylight.yangtools.yang.common.RpcResult;
22
23 /**
24  * The Queue direct statistics service.
25  */
26 public abstract class AbstractGetQueueStatistics<T extends OfHeader>
27         extends AbstractDirectStatisticsService<GetQueueStatisticsInput, GetQueueStatisticsOutput, T>
28         implements GetQueueStatistics {
29     protected AbstractGetQueueStatistics(final RequestContextStack requestContextStack,
30             final DeviceContext deviceContext, final ConvertorExecutor convertorExecutor,
31             final MultipartWriterProvider statisticsWriterProvider) {
32         super(MultipartType.OFPMPQUEUE, requestContextStack, deviceContext, convertorExecutor,
33             statisticsWriterProvider);
34     }
35
36     @Override
37     public final ListenableFuture<RpcResult<GetQueueStatisticsOutput>> invoke(final GetQueueStatisticsInput input) {
38         return handleAndReply(input);
39     }
40 }