Package org.openhab.action.openwebif.internal.impl.model

Examples of org.openhab.action.openwebif.internal.impl.model.PowerState


  /**
   * Returns true, if the sat reveiver is in standby.
   */
  public boolean isStandby(OpenWebIfConfig config) throws IOException {
    String url = new UrlBuilder(config, POWERSTATE).build();
    PowerState result = executeRequest(config, url, PowerState.class);
    return result.isStandby();
  }
View Full Code Here

TOP

Related Classes of org.openhab.action.openwebif.internal.impl.model.PowerState

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.