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.ipcamera.internal;
15 import org.eclipse.jdt.annotation.NonNullByDefault;
18 * The {@link GroupConfig} handles the configuration of camera groups.
20 * @author Matthew Skinner - Initial contribution
23 public class GroupConfig {
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 = "";
34 public String getFirstCamera() {
38 public String getSecondCamera() {
42 public String getThirdCamera() {
46 public String getForthCamera() {
50 public boolean getMotionChangesOrder() {
51 return motionChangesOrder;
54 public String getIpWhitelist() {
58 public String getFfmpegLocation() {
59 return ffmpegLocation;
62 public String getFfmpegOutput() {
66 public int getPollTime() {