Initial checkin for Interface Manager
[vpnservice.git] / interfacemgr / interfacemgr-impl / src / main / java / org / opendaylight / vpnservice / interfacemgr / InterfacemgrProvider.java
1 /*
2  * Copyright (c) 2015 Ericsson India Global Services Pvt Ltd. 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.vpnservice.interfacemgr;
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 InterfacemgrProvider implements BindingAwareProvider, AutoCloseable {
16
17     private static final Logger LOG = LoggerFactory.getLogger(InterfacemgrProvider.class);
18
19     @Override
20     public void onSessionInitiated(ProviderContext session) {
21         LOG.info("InterfacemgrProvider Session Initiated");
22     }
23
24     @Override
25     public void close() throws Exception {
26         LOG.info("InterfacemgrProvider Closed");
27     }
28
29 }