Examples of SqueezePlayer


Examples of org.openhab.io.squeezeserver.SqueezePlayer

    if (!squeezeServer.isConnected()) {
      logger.warn("Not connected to the Squeeze Server. Please check your config and consult the openHAB WIKI for instructions on how to configure. Ignoring action.");
      return null;
    }

    SqueezePlayer player = squeezeServer.getPlayer(playerId);
    if (player == null) {
      logger.warn("No Squeezebox player exists with name '{}'. Ignoring action.", playerId);
      return null;
    }
   
View Full Code Here

Examples of org.openhab.io.squeezeserver.SqueezePlayer

    logger.trace("internalReceiveCommand(itemname = {}, command = {})", itemName, command.toString());
    for (SqueezeboxBindingProvider provider : providers) {
      SqueezeboxBindingConfig bindingConfig = provider.getSqueezeboxBindingConfig(itemName);

      String playerId = bindingConfig.getPlayerId();
      SqueezePlayer player = squeezeServer.getPlayer(playerId);
      if (player == null) {
        logger.warn("No Squeezebox player configured with id '{}'. Ignoring.", playerId);
        continue;
      }
   
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.