2 * Copyright (c) 2010-2023 Contributors to the openHAB project
4 * See the NOTICE file(s) distributed with this work for additional
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
11 * SPDX-License-Identifier: EPL-2.0
13 package org.openhab.binding.nuki.internal.dataexchange;
15 import org.openhab.binding.nuki.internal.dto.BridgeApiLockActionDto;
18 * The {@link BridgeLockActionResponse} class wraps {@link BridgeApiLockActionDto} class.
20 * @author Markus Katter - Initial contribution
22 public class BridgeLockActionResponse extends NukiBaseResponse {
24 private boolean batteryCritical;
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());
34 public BridgeLockActionResponse(NukiBaseResponse nukiBaseResponse) {
35 super(nukiBaseResponse.getStatus(), nukiBaseResponse.getMessage());
38 public boolean isBatteryCritical() {
39 return batteryCritical;
42 public void setBatteryCritical(boolean batteryCritical) {
43 this.batteryCritical = batteryCritical;