Remove unused routedRpcRegistration
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / services / EchoService.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.DeviceContext;
11 import org.opendaylight.openflowplugin.api.openflow.device.RequestContextStack;
12 import org.opendaylight.openflowplugin.api.openflow.device.Xid;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.EchoInputBuilder;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.EchoOutput;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.OfHeader;
16
17 public class EchoService extends AbstractSimpleService<EchoInputBuilder, EchoOutput> {
18     public EchoService(final RequestContextStack requestContextStack, final DeviceContext deviceContext) {
19         super(requestContextStack, deviceContext, EchoOutput.class);
20     }
21
22     @Override
23     protected OfHeader buildRequest(final Xid xid, final EchoInputBuilder input) {
24         return input
25                 .setXid(xid.getValue())
26                 .setVersion(getVersion())
27                 .build();
28     }
29 }