]> git.basschouten.com Git - openhab-addons.git/blob
9f6d7726bdebec3e93bcd0087025d4739ef29ce7
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2021 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.tellstick.internal.local.dto;
14
15 /**
16  * Class used to deserialize JSON from Telldus local API.
17  *
18  * @author Jan Gustafsson - Initial contribution
19  */
20 public class TelldusLocalResponseDTO {
21
22     private String error;
23     private String status;
24
25     public String getError() {
26         return error;
27     }
28
29     public void setError(String error) {
30         this.error = error;
31     }
32
33     public String getStatus() {
34         return status;
35     }
36
37     public void setStatus(String status) {
38         this.status = status;
39     }
40 }