SouthboundIT: merge the CRUD tests methods
[netvirt.git] / openstack / net-virt-sfc / impl / src / main / java / org / opendaylight / ovsdb / openstack / netvirt / sfc / workaround / services / SfcClassifierService.java
1 /*
2  * Copyright © 2015 Red Hat, 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.ovsdb.openstack.netvirt.sfc.workaround.services;
10
11 import org.opendaylight.ovsdb.openstack.netvirt.providers.ConfigInterface;
12 import org.opendaylight.ovsdb.openstack.netvirt.providers.openflow13.AbstractServiceInstance;
13 import org.opendaylight.ovsdb.openstack.netvirt.providers.openflow13.Service;
14 import org.osgi.framework.BundleContext;
15 import org.osgi.framework.ServiceReference;
16
17 public class SfcClassifierService extends AbstractServiceInstance implements ConfigInterface {
18     public SfcClassifierService(Service service) {
19         super(service);
20     }
21
22     public SfcClassifierService() {
23         super(Service.SFC_CLASSIFIER);
24     }
25
26     @Override
27     public void setDependencies(BundleContext bundleContext, ServiceReference serviceReference) {
28         super.setDependencies(bundleContext.getServiceReference(SfcClassifierService.class.getName()), this);
29     }
30
31     @Override
32     public void setDependencies(Object impl) {}
33 }