]> git.basschouten.com Git - openhab-addons.git/blob
7dc8e7740ceac6a12d6417f9afbe28d44fe79758
[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.automower.internal.rest.api.automowerconnect.dto;
14
15 /**
16  * @author Markus Pfleger - Initial contribution
17  */
18 public class MowerData {
19     private System system;
20     private Battery battery;
21     private MowerApp mower;
22     private Calendar calendar;
23     private Planner planner;
24     private Metadata metadata;
25
26     public System getSystem() {
27         return system;
28     }
29
30     public void setSystem(System system) {
31         this.system = system;
32     }
33
34     public Battery getBattery() {
35         return battery;
36     }
37
38     public void setBattery(Battery battery) {
39         this.battery = battery;
40     }
41
42     public MowerApp getMower() {
43         return mower;
44     }
45
46     public void setMower(MowerApp mower) {
47         this.mower = mower;
48     }
49
50     public Calendar getCalendar() {
51         return calendar;
52     }
53
54     public void setCalendar(Calendar calendar) {
55         this.calendar = calendar;
56     }
57
58     public Planner getPlanner() {
59         return planner;
60     }
61
62     public void setPlanner(Planner planner) {
63         this.planner = planner;
64     }
65
66     public Metadata getMetadata() {
67         return metadata;
68     }
69
70     public void setMetadata(Metadata metadata) {
71         this.metadata = metadata;
72     }
73 }