d332f6c2bb9283872bd41cacb41c617934cc6d7c
[transportpce.git] / impl / src / main / java / org / opendaylight / transportpce / impl / TransportpceProvider.java
1 /*
2  * Copyright © 2016 Orange 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.transportpce.impl;
9
10 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
11 import org.slf4j.Logger;
12 import org.slf4j.LoggerFactory;
13
14 public class TransportpceProvider {
15
16     private static final Logger LOG = LoggerFactory.getLogger(TransportpceProvider.class);
17
18     private final DataBroker dataBroker;
19
20     public TransportpceProvider(final DataBroker dataBroker) {
21         this.dataBroker = dataBroker;
22     }
23
24     /**
25      * Method called when the blueprint container is created.
26      */
27     public void init() {
28         LOG.info("TransportpceProvider Session Initiated");
29     }
30
31     /**
32      * Method called when the blueprint container is destroyed.
33      */
34     public void close() {
35         LOG.info("TransportpceProvider Closed");
36     }
37 }