]> git.basschouten.com Git - openhab-addons.git/blob
691693e04d91de6603fd8cb1d617bd82b15a264e
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 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.lametrictime.internal.api.dto;
14
15 import org.openhab.binding.lametrictime.internal.api.local.dto.UpdateAction;
16
17 /**
18  * Class for managing the core actions.
19  *
20  * @author Gregory Moyer - Initial contribution
21  */
22 public class CoreAction {
23     private final CoreApplication app;
24     private final UpdateAction action;
25
26     protected CoreAction(CoreApplication app, UpdateAction action) {
27         this.app = app;
28         this.action = action;
29     }
30
31     public CoreApplication getApp() {
32         return app;
33     }
34
35     public UpdateAction getAction() {
36         return action;
37     }
38 }