]> git.basschouten.com Git - openhab-addons.git/blob
ec253d0766cd61c6dd65f5820556d9841765b68a
[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.icalendar.internal.config;
14
15 import java.math.BigDecimal;
16
17 import org.eclipse.jdt.annotation.NonNullByDefault;
18 import org.eclipse.jdt.annotation.Nullable;
19
20 /**
21  * The EventFilterConfiguration holds configuration for the Event Filter Item Type.
22  *
23  * @author Michael Wodniok - Initial contribution
24  */
25 @NonNullByDefault
26 public class EventFilterConfiguration {
27     @Nullable
28     public BigDecimal maxEvents;
29     @Nullable
30     public BigDecimal refreshTime;
31     @Nullable
32     public String datetimeUnit;
33     @Nullable
34     public BigDecimal datetimeStart;
35     @Nullable
36     public BigDecimal datetimeEnd;
37     @Nullable
38     public Boolean datetimeRound;
39     @Nullable
40     public String textEventField;
41     @Nullable
42     public String textEventValue;
43     @Nullable
44     public String textValueType;
45 }