/* * AndFHEM - Open Source Android application to control a FHEM home automation * server. * * Copyright (c) 2011, Matthias Klass or third-party contributors as * indicated by the @author tags or express copyright attribution * statements applied by the authors. All third-party contributions are * distributed under license by Red Hat Inc. * * This copyrighted material is made available to anyone wishing to use, modify, * copy, or redistribute it subject to the terms and conditions of the GNU GENERAL PUBLIC LICENSE, as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU GENERAL PUBLIC LICENSE * for more details. * * You should have received a copy of the GNU GENERAL PUBLIC LICENSE * along with this distribution; if not, write to: * Free Software Foundation, Inc. * 51 Franklin Street, Fifth Floor * Boston, MA 02110-1301 USA */ package li.klass.fhem.constants; public class PreferenceKeys { public static final String SHOW_HIDDEN_DEVICES = "prefShowHiddenDevices"; public static final String DEVICE_COLUMN_WIDTH = "DEVICE_COLUMN_WIDTH"; public static final String APPLICATION_VERSION = "APPLICATION_VERSION"; public static final String UPDATE_ON_ROOM_OPEN = "UPDATE_ON_ROOM_OPEN"; public static final String UPDATE_ON_APPLICATION_START = "UPDATE_ON_APPLICATION_START"; public static final String SHOW_SET_VALUE_BUTTONS = "SHOW_SET_VALUE_BUTTONS"; public static final String DEVICE_LIST_RIGHT_PADDING = "DEVICE_LIST_PADDING_RIGHT"; public static final String GCM_REGISTRATION_ID = "GCM_REGISTRATION_ID"; public static final String GCM_PROJECT_ID = "GCM_PROJECT_ID"; public static final String GCM_WIDGET_UPDATE = "GCM_WIDGET_UPDATE"; public static final String SEND_LAST_ERROR = "SEND_LAST_ERROR"; public static final String STARTUP_VIEW = "STARTUP_VIEW"; public static final String CONNECTION_TIMEOUT = "CONNECTION_TIMEOUT"; public static final String COMMAND_EXECUTION_RETRIES = "COMMAND_EXECUTION_RETRIES"; public static final String FHEMWEB_DEVICE_NAME = "DEVICE_NAME"; public static final String STARTUP_PASSWORD = "PASSWORD"; public static final String SEND_APP_LOG = "SEND_APP_LOG"; public static final String ALLOW_REMOTE_UPDATE = "prefWidgetRemoteUpdate"; public static final String VOICE_COMMANDS = "VOICE_COMMANDS"; public static final String CLEAR_TRUSTED_CERTIFICATES = "CLEAR_TRUSTED_CERTIFICATES"; public static final String GRAPH_DEFAULT_TIMESPAN = "GRAPH_DEFAULT_TIMESPAN"; public static final String WIDGET_UPDATE_INTERVAL_WLAN = "WIDGET_UPDATE_INTERVAL_WLAN"; public static final String WIDGET_UPDATE_INTERVAL_MOBILE = "WIDGET_UPDATE_INTERVAL_MOBILE"; public static final String AUTO_UPDATE_TIME = "AUTO_UPDATE_TIME"; public static final String EXPORT_SETTINGS = "EXPORT_SETTINGS"; public static final String IMPORT_SETTINGS = "IMPORT_SETTINGS"; public static final String DEVICE_FUNCTIONALITY_ORDER_VISIBLE = "DEVICE_FUNCTIONALITY_ORDER_VISIBLE"; public static final String DEVICE_TYPE_FUNCTIONALITY_ORDER_INVISIBLE = "DEVICE_TYPE_FUNCTIONALITY_ORDER_INVISIBLE"; public static final String SELECTED_CONNECTION = "SELECTED_CONNECTION"; }