/* * � Copyright IBM Corp. 2010 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or * implied. See the License for the specific language governing * permissions and limitations under the License. */ package com.ibm.xsp.extlib.request; /** * Basic mobile constants. * * @author Philippe Riand * @author tony.mcguckin@ie.ibm.com */ public class MobileConstants { public static final String USER_AGENT_HEADER = "USER-AGENT"; // $NON-NLS-1$ public static final String MOBILE_CONTEXT = "mobile"; // $NON-NLS-1$ public static final String MOBILE_PLATFORM_PARAM = "platform"; // $NON-NLS-1$ public static final String MOBILE_PLATFORM = "extlib.mobile.platform"; // $NON-NLS-1$ public static final String XSP_THEME_WEB = "xsp.theme.web"; //$NON-NLS-1$ public static final String XSP_THEME_MOBILE = "xsp.theme.mobile"; //$NON-NLS-1$ public static final String XSP_THEME_MOBILE_IPHONE = "xsp.theme.mobile.iphone"; //$NON-NLS-1$ public static final String XSP_THEME_MOBILE_ANDROID = "xsp.theme.mobile.android"; //$NON-NLS-1$ public static final String XSP_THEME_MOBILE_BBERRY = "xsp.theme.mobile.bberry"; //$NON-NLS-1$ public static final String XSP_THEME_MOBILE_PAGEPREFIX = "xsp.theme.mobile.pagePrefix"; //$NON-NLS-1$ public static final String XSP_THEME_MOBILE_DEBUG_USERAGENT = "xsp.theme.mobile.debug.userAgent"; //$NON-NLS-1$ }