/** * Copyright (c) 2014-2017 by the respective copyright holders. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html */ package org.eclipse.smarthome.io.transport.mdns.internal; import org.osgi.framework.BundleActivator; import org.osgi.framework.BundleContext; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Extension of the default OSGi bundle activator */ public final class MDNSActivator implements BundleActivator { private final Logger logger = LoggerFactory.getLogger(MDNSActivator.class); /** * Called whenever the OSGi framework starts our bundle */ @Override public void start(BundleContext context) throws Exception { logger.debug("mDNS service has been started."); } /** * Called whenever the OSGi framework stops our bundle */ @Override public void stop(BundleContext context) throws Exception { logger.debug("mDNS service has been stopped."); } }