]> git.basschouten.com Git - openhab-addons.git/blob
f50ad42daf38c2f88476e978b5a85594531ac3a6
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2020 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.zoneminder.internal;
14
15 /**
16  *
17  * @author Martin S. Eskildsen - Initial contribution
18  */
19 public class ZoneMinderProperties {
20     public static final String PROPERTY_ID = "Id";
21
22     public static final String PROPERTY_SERVER_VERSION = "Version";
23     public static final String PROPERTY_SERVER_API_VERSION = "API Version";
24     public static final String PROPERTY_SERVER_USE_API = "API Enabled";
25     public static final String PROPERTY_SERVER_USE_AUTHENTIFICATION = "Use Authentification";
26     public static final String PROPERTY_SERVER_TRIGGERS_ENABLED = "Triggers enabled";
27
28     public static final String PROPERTY_MONITOR_NAME = "Name";
29     public static final String PROPERTY_MONITOR_SOURCETYPE = "Sourcetype";
30
31     public static final String PROPERTY_MONITOR_ANALYSIS_FPS = "Analysis FPS";
32     public static final String PROPERTY_MONITOR_MAXIMUM_FPS = "Maximum FPS";
33     public static final String PROPERTY_MONITOR_ALARM_MAXIMUM = "Alarm Maximum FPS";
34
35     public static final String PROPERTY_MONITOR_IMAGE_WIDTH = "Width";
36     public static final String PROPERTY_MONITOR_IMAGE_HEIGHT = "Height";
37 }