forked from openhab/openhab-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[hydrawise] Migrate to new GraphQL based API (openhab#10947)
* [hydrawise] Migrated to new GraphQL based API Fixes openhab#7261 Signed-off-by: Dan Cunningham <[email protected]> * Addressed PR comments. Signed-off-by: Dan Cunningham <[email protected]> * Address PR review comments. Signed-off-by: Dan Cunningham <[email protected]>
- Loading branch information
1 parent
1a1226f
commit caa52d2
Showing
65 changed files
with
2,369 additions
and
947 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
243 changes: 0 additions & 243 deletions
243
...hydrawise/src/main/java/org/openhab/binding/hydrawise/internal/HydrawiseCloudHandler.java
This file was deleted.
Oops, something went wrong.
28 changes: 28 additions & 0 deletions
28
...ise/src/main/java/org/openhab/binding/hydrawise/internal/HydrawiseControllerListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/** | ||
* Copyright (c) 2010-2021 Contributors to the openHAB project | ||
* | ||
* See the NOTICE file(s) distributed with this work for additional | ||
* information. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0 | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
*/ | ||
package org.openhab.binding.hydrawise.internal; | ||
|
||
import java.util.List; | ||
|
||
import org.eclipse.jdt.annotation.NonNullByDefault; | ||
import org.openhab.binding.hydrawise.internal.api.graphql.dto.Controller; | ||
|
||
/** | ||
* | ||
* @author Dan Cunningham - Initial contribution | ||
* | ||
*/ | ||
@NonNullByDefault | ||
public interface HydrawiseControllerListener { | ||
public void onData(List<Controller> controllers); | ||
} |
Oops, something went wrong.