]> git.basschouten.com Git - openhab-addons.git/blob
6a8502ab1651da9a1cc7e4274fa72ff1032ac552
[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.ipcamera.internal;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16
17 /**
18  * The {@link GroupConfig} handles the configuration of camera groups.
19  *
20  * @author Matthew Skinner - Initial contribution
21  */
22 @NonNullByDefault
23 public class GroupConfig {
24     private int pollTime;
25     private boolean motionChangesOrder = true;
26     private String ipWhitelist = "";
27     private String ffmpegLocation = "";
28     private String ffmpegOutput = "";
29     private String firstCamera = "";
30     private String secondCamera = "";
31     private String thirdCamera = "";
32     private String forthCamera = "";
33
34     public String getFirstCamera() {
35         return firstCamera;
36     }
37
38     public String getSecondCamera() {
39         return secondCamera;
40     }
41
42     public String getThirdCamera() {
43         return thirdCamera;
44     }
45
46     public String getForthCamera() {
47         return forthCamera;
48     }
49
50     public boolean getMotionChangesOrder() {
51         return motionChangesOrder;
52     }
53
54     public String getIpWhitelist() {
55         return ipWhitelist;
56     }
57
58     public String getFfmpegLocation() {
59         return ffmpegLocation;
60     }
61
62     public String getFfmpegOutput() {
63         return ffmpegOutput;
64     }
65
66     public int getPollTime() {
67         return pollTime;
68     }
69 }