-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[veSync] Device support enhancements
Device support enhancements Signed-off-by: David Goodyear <[email protected]>
- Loading branch information
Showing
23 changed files
with
1,306 additions
and
206 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
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
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
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
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
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
45 changes: 45 additions & 0 deletions
45
...rc/main/java/org/openhab/binding/vesync/internal/dto/requests/VeSyncRequestV1Command.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,45 @@ | ||
/** | ||
* Copyright (c) 2010-2023 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.vesync.internal.dto.requests; | ||
|
||
import javax.ws.rs.HttpMethod; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
/** | ||
* The {@link VeSyncRequestV1Command} is the Java class as a DTO to define the base implementation of a V1 command for | ||
* the Vesync | ||
* API. | ||
* | ||
* @author David Goodyear - Initial contribution | ||
*/ | ||
public class VeSyncRequestV1Command extends VeSyncAuthenticatedRequest { | ||
|
||
@SerializedName("uuid") | ||
public String uuid = null; | ||
|
||
public VeSyncRequestV1Command(final String deviceUuid) { | ||
// Exclude fields that shouldn't be there by setting to null | ||
super.phoneOS = null; | ||
super.phoneBrand = null; | ||
super.method = null; | ||
super.appVersion = null; | ||
super.httpMethod = HttpMethod.PUT; | ||
// Set the required payload parameters | ||
uuid = deviceUuid; | ||
} | ||
|
||
public String getUuid() { | ||
return uuid; | ||
} | ||
} |
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
36 changes: 36 additions & 0 deletions
36
...c/main/java/org/openhab/binding/vesync/internal/dto/requests/VeSyncRequestV1SetLevel.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,36 @@ | ||
/** | ||
* Copyright (c) 2010-2023 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.vesync.internal.dto.requests; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
/** | ||
* The {@link VeSyncRequestV1SetLevel} is the Java class as a DTO define a V1 Set Level command for the Vesync | ||
* API. | ||
* | ||
* @author David Goodyear - Initial contribution | ||
*/ | ||
public class VeSyncRequestV1SetLevel extends VeSyncRequestV1Command { | ||
|
||
@SerializedName("level") | ||
public Integer level = null; | ||
|
||
public VeSyncRequestV1SetLevel(final String deviceUuid, final int level) { | ||
super(deviceUuid); | ||
this.level = level; | ||
} | ||
|
||
public Integer getLevel() { | ||
return level; | ||
} | ||
} |
36 changes: 36 additions & 0 deletions
36
...rc/main/java/org/openhab/binding/vesync/internal/dto/requests/VeSyncRequestV1SetMode.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,36 @@ | ||
/** | ||
* Copyright (c) 2010-2023 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.vesync.internal.dto.requests; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
/** | ||
* The {@link VeSyncRequestV1SetMode} is the Java class as a DTO define a V1 Set Mode command for the Vesync | ||
* API. | ||
* | ||
* @author David Goodyear - Initial contribution | ||
*/ | ||
public class VeSyncRequestV1SetMode extends VeSyncRequestV1Command { | ||
|
||
@SerializedName("mode") | ||
public String mode = null; | ||
|
||
public VeSyncRequestV1SetMode(final String deviceUuid, final String mode) { | ||
super(deviceUuid); | ||
this.mode = mode; | ||
} | ||
|
||
public String getMode() { | ||
return mode; | ||
} | ||
} |
36 changes: 36 additions & 0 deletions
36
.../main/java/org/openhab/binding/vesync/internal/dto/requests/VeSyncRequestV1SetStatus.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,36 @@ | ||
/** | ||
* Copyright (c) 2010-2023 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.vesync.internal.dto.requests; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
/** | ||
* The {@link VeSyncRequestV1SetStatus} is the Java class as a DTO define a V1 Set Status command for the Vesync | ||
* API. | ||
* | ||
* @author David Goodyear - Initial contribution | ||
*/ | ||
public class VeSyncRequestV1SetStatus extends VeSyncRequestV1Command { | ||
|
||
@SerializedName("status") | ||
public String status = null; | ||
|
||
public VeSyncRequestV1SetStatus(final String deviceUuid, final String status) { | ||
super(deviceUuid); | ||
this.status = status; | ||
} | ||
|
||
public String getStatus() { | ||
return status; | ||
} | ||
} |
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
Oops, something went wrong.