Package com.carrotgarden.osgi.factory.impl.util

Examples of com.carrotgarden.osgi.factory.impl.util.Props


      log.debug("factory bind   : {}", factory);

      factoryMap.put(factoryId, factory);

      final Props props = Props.make();
      props.put(FactoryEvent.PROP_FACTORY_ID, factoryId);
      eventer.send(FactoryEvent.FACTORY_ENABLED, props);

      sender.sendState(FidgetManagerProvider.this, factoryId,
          FactoryHandler.ON);
View Full Code Here


        return;
      }

      log.debug("factory unbind : {}", factory);

      final Props props = Props.make();
      props.put(FactoryEvent.PROP_FACTORY_ID, factoryId);
      eventer.send(FactoryEvent.FACTORY_DISABLED, props);

      sender.sendState(FidgetManagerProvider.this, factoryId,
          FactoryHandler.OFF);
View Full Code Here

TOP

Related Classes of com.carrotgarden.osgi.factory.impl.util.Props

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.