-
-
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] Vital and 131 Purifiers base support
PUR131 and Vital additions Signed-off-by: David Goodyear <[email protected]>
- Loading branch information
Showing
19 changed files
with
809 additions
and
137 deletions.
There are no files selected for viewing
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; | ||
} | ||
} |
Oops, something went wrong.