]> git.basschouten.com Git - openhab-addons.git/blob
8a4835fc0ddaa56b1e07776089e274f3dafb0d38
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
7  * This program and the accompanying materials are made available under the
8  * terms of the Eclipse Public License 2.0 which is available at
9  * http://www.eclipse.org/legal/epl-2.0
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.nuki.internal.dataexchange;
14
15 import org.openhab.binding.nuki.internal.dto.BridgeApiLockActionDto;
16
17 /**
18  * The {@link BridgeLockActionResponse} class wraps {@link BridgeApiLockActionDto} class.
19  *
20  * @author Markus Katter - Initial contribution
21  */
22 public class BridgeLockActionResponse extends NukiBaseResponse {
23
24     private boolean batteryCritical;
25
26     public BridgeLockActionResponse(int status, String message, BridgeApiLockActionDto bridgeApiLockActionDto) {
27         super(status, message);
28         if (bridgeApiLockActionDto != null) {
29             this.setSuccess(bridgeApiLockActionDto.isSuccess());
30             this.setBatteryCritical(bridgeApiLockActionDto.isBatteryCritical());
31         }
32     }
33
34     public BridgeLockActionResponse(NukiBaseResponse nukiBaseResponse) {
35         super(nukiBaseResponse.getStatus(), nukiBaseResponse.getMessage());
36     }
37
38     public boolean isBatteryCritical() {
39         return batteryCritical;
40     }
41
42     public void setBatteryCritical(boolean batteryCritical) {
43         this.batteryCritical = batteryCritical;
44     }
45 }