/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library 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 Lesser General Public License for more * details. */ package com.liferay.portal.mobile.device.detection.fiftyonedegrees.internal.constants; /** * @author Brian Greenwald * @author Prathima Shreenath */ public class FiftyOneDegreesPropertyNames { public static final String BROWSER_NAME = "BrowserName"; public static final String BROWSER_VERSION = "BrowserVersion"; public static final String HARDWARE_MODEL = "HardwareModel"; public static final String HARDWARE_NAME = "HardwareName"; public static final String HARDWARE_VENDOR = "HardwareVendor"; public static final String HAS_QWERTY_PAD = "HasQwertyPad"; public static final String HAS_VIRTUAL_QWERTY = "HasVirtualQwerty"; public static final String IS_TABLET = "IsTablet"; public static final String PLATFORM_NAME = "PlatformName"; public static final String PLATFORM_VERSION = "PlatformVersion"; public static final String SCREEN_MM_HEIGHT = "ScreenMMHeight"; public static final String SCREEN_MM_WIDTH = "ScreenMMWidth"; public static final String SCREEN_PIXELS_HEIGHT = "ScreenPixelsHeight"; public static final String SCREEN_PIXELS_WIDTH = "ScreenPixelsWidth"; public static final String[] TOUCH_EVENTS = { "HasClickWheel", "HasKeypad", "HasQwertyPad", "HasTouchScreen", "HasTrackPad" }; }