Simplify CommonService interface
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / services / AbstractSimpleService.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 com.google.common.base.Preconditions;
11 import com.google.common.util.concurrent.FutureCallback;
12 import org.opendaylight.openflowplugin.api.openflow.device.DeviceContext;
13 import org.opendaylight.openflowplugin.api.openflow.device.RequestContext;
14 import org.opendaylight.openflowplugin.api.openflow.device.RequestContextStack;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.OfHeader;
16 import org.opendaylight.yangtools.yang.binding.DataObject;
17
18 public abstract class AbstractSimpleService<I, O extends DataObject> extends AbstractService<I, O> {
19     private final Class<O> clazz;
20
21     protected AbstractSimpleService(final RequestContextStack requestContextStack, final DeviceContext deviceContext, final Class<O> clazz) {
22         super(requestContextStack, deviceContext);
23         this.clazz = Preconditions.checkNotNull(clazz);
24     }
25
26     @Override
27     protected final FutureCallback<OfHeader> createCallback(final RequestContext<O> context, final Class<?> requestType) {
28         return SimpleRequestCallback.create(context, requestType, getMessageSpy(), clazz);
29     }
30 }