Package org.openhab.binding.homematic.internal.common

Examples of org.openhab.binding.homematic.internal.common.HomematicConfig


   * Creates the socket for listening to events from the Homematic server.
   */
  public BinRpcNetworkService(HomematicCallbackReceiver callbackReceiver) throws Exception {
    this.callbackReceiver = callbackReceiver;

    HomematicConfig config = HomematicContext.getInstance().getConfig();
    serverSocket = new ServerSocket(config.getCallbackPort());
    serverSocket.setReuseAddress(true);
  }
View Full Code Here

TOP

Related Classes of org.openhab.binding.homematic.internal.common.HomematicConfig

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.