Examples of OmniLinkBindingProvider


Examples of org.openhab.binding.omnilink.OmniLinkBindingProvider

   * {@inheritDoc}
   */
  @Override
  public void bindingChanged(BindingProvider provider, String itemName) {
    if (provider instanceof OmniLinkBindingProvider) {
      OmniLinkBindingProvider omniProvider = (OmniLinkBindingProvider) provider;
      logger.debug("binding changed");
      OmniLinkBindingConfig config = omniProvider.getOmniLinkBindingConfig(itemName);
      refreshMap.put(itemName, config);

    }
  }
View Full Code Here

Examples of org.openhab.binding.omnilink.OmniLinkBindingProvider

   * {@inheritDoc}
   */
  @Override
  public void allBindingsChanged(BindingProvider provider) {
    if (provider instanceof OmniLinkBindingProvider) {
      OmniLinkBindingProvider omniProvider = (OmniLinkBindingProvider) provider;
      populateRefreshMapFromProvider(omniProvider);
      logger.debug("all binding changed");
    }
  }
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.