Package net.jonathangiles.tivo

Examples of net.jonathangiles.tivo.TivoRemote


  protected void internalReceiveCommand(String itemName, Command command) {
    final TivoBindingProvider bindingProvider = findFirstMatchingBindingProvider(itemName, command);
    final String tivoCommand = bindingProvider.getTivoCommand(itemName);
   
    if (host != null && ! host.isEmpty()) {
      new TivoRemote(host).sendCommand(tivoCommand);
      logger.debug("Sent '" + tivoCommand + "' to Tivo");
    } else {
      logger.error("Cannot send Tivo command as host is invalid: '" + host + "'.");
    }
  }
View Full Code Here

TOP

Related Classes of net.jonathangiles.tivo.TivoRemote

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.