Merge "Initial pass at netvirt model"
[ovsdb.git] / openstack / net-virt-sfc / impl / src / main / java / org / opendaylight / ovsdb / openstack / netvirt / sfc / NetvirtSfcProvider.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 package org.opendaylight.ovsdb.openstack.netvirt.sfc;
9
10 import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.ProviderContext;
11 import org.opendaylight.controller.sal.binding.api.BindingAwareProvider;
12 import org.slf4j.Logger;
13 import org.slf4j.LoggerFactory;
14
15 public class NetvirtSfcProvider implements BindingAwareProvider, AutoCloseable {
16
17     private static final Logger LOG = LoggerFactory.getLogger(NetvirtSfcProvider.class);
18
19     @Override
20     public void onSessionInitiated(ProviderContext session) {
21         LOG.info("NetvirtSfcProvider Session Initiated");
22     }
23
24     @Override
25     public void close() throws Exception {
26         LOG.info("NetvirtSfcProvider Closed");
27     }
28
29 }