Simplify CommonService interface
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / services / VoidRequestCallback.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 org.opendaylight.openflowplugin.api.openflow.device.RequestContext;
11 import org.opendaylight.openflowplugin.api.openflow.statistics.ofpspecific.MessageSpy;
12 import org.opendaylight.openflowplugin.api.openflow.statistics.ofpspecific.MessageSpy.STATISTIC_GROUP;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.OfHeader;
14 import org.opendaylight.yangtools.yang.common.RpcResult;
15 import org.opendaylight.yangtools.yang.common.RpcResultBuilder;
16
17 final class VoidRequestCallback extends AbstractRequestCallback<Void> {
18     private static final RpcResult<Void> SUCCESS = RpcResultBuilder.<Void>success().build();
19
20     VoidRequestCallback(final RequestContext<Void> context, final Class<?> requestType, final MessageSpy spy) {
21         super(context, requestType, spy);
22     }
23
24     @Override
25     public void onSuccess(final OfHeader result) {
26         spyMessage(STATISTIC_GROUP.TO_SWITCH_SUBMIT_SUCCESS_NO_RESPONSE);
27         setResult(SUCCESS);
28     }
29 }