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.lametrictime.internal.api.dto;
16 * Class for managing the core apps.
18 * @author Gregory Moyer - Initial contribution
20 public class CoreApps {
21 private static final ClockApp CLOCK = new ClockApp();
22 private static final CountdownApp COUNTDOWN = new CountdownApp();
23 private static final RadioApp RADIO = new RadioApp();
24 private static final StopwatchApp STOPWATCH = new StopwatchApp();
25 private static final WeatherApp WEATHER = new WeatherApp();
27 public static ClockApp clock() {
31 public static CountdownApp countdown() {
35 public static RadioApp radio() {
39 public static StopwatchApp stopwatch() {
43 public static WeatherApp weather() {