73cf63f4ec0b3f0daa924f3b87aeb059b69b5233
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / services / MeterService.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.openflowplugin.openflow.md.core.sal.convertor.MeterConvertor;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.meter.types.rev130918.Meter;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.MeterModInputBuilder;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.OfHeader;
17 import org.opendaylight.yangtools.yang.binding.DataObject;
18
19 final class MeterService<I extends Meter, O extends DataObject> extends AbstractSimpleService<I, O> {
20
21     MeterService(final RequestContextStack requestContextStack, final DeviceContext deviceContext, final Class<O> clazz) {
22         super(requestContextStack, deviceContext, clazz);
23     }
24
25     @Override
26     protected OfHeader buildRequest(final Xid xid, final I input) {
27         final MeterModInputBuilder ofMeterModInput = MeterConvertor.toMeterModInput(input, getVersion());
28         ofMeterModInput.setXid(xid.getValue());
29         return ofMeterModInput.build();
30     }
31 }