initial framework for sfc workaround and IT tests
[netvirt.git] / openstack / net-virt-sfc / impl / src / main / java / org / opendaylight / ovsdb / openstack / netvirt / sfc / standalone / openflow13 / 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.standalone.openflow13.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 import org.slf4j.Logger;
17 import org.slf4j.LoggerFactory;
18
19 public class SfcClassifierService extends AbstractServiceInstance implements ConfigInterface {
20     private static final Logger LOG = LoggerFactory.getLogger(SfcClassifierService.class);
21
22     public SfcClassifierService(Service service) {
23         super(service);
24     }
25
26     public SfcClassifierService() {
27         super(Service.SFC_CLASSIFIER);
28     }
29
30     @Override
31     public void setDependencies(BundleContext bundleContext, ServiceReference serviceReference) {
32         super.setDependencies(bundleContext.getServiceReference(SfcClassifierService.class.getName()), this);
33     }
34
35     @Override
36     public void setDependencies(Object impl) {}
37 }