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.robonect.internal.model;
16 * This object will be part of the status response and holds the next timer execution information.
18 * @author Marco Meyer - Initial contribution
20 public class NextTimer {
27 * @return - The date (dd.MM.yy) of the next timer execution.
29 public String getDate() {
34 * @return - the timestamp (HH:mm:ss) of the next timer execution
36 public String getTime() {
41 * @return - the next timer execution in the form of a unix timestamp.
43 public String getUnix() {
47 public void setDate(String date) {
51 public void setTime(String time) {
55 public void setUnix(String unix) {