com.liferay.portal.kernel.servlet.BrowserSniffer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of portal-service Show documentation
Show all versions of portal-service Show documentation
Contains interfaces for the portal services. Interfaces are only loaded by the global class loader and are shared by all plugins.
/**
* Copyright (c) 2000-2013 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.kernel.servlet;
import javax.servlet.http.HttpServletRequest;
/**
* See http://www.zytrax.com/tech/web/browser_ids.htm for examples.
*
* @author Brian Wing Shun Chan
*/
public interface BrowserSniffer {
public static final String BROWSER_ID_FIREFOX = "firefox";
public static final String BROWSER_ID_IE = "ie";
public static final String BROWSER_ID_OTHER = "other";
public boolean acceptsGzip(HttpServletRequest request);
public String getBrowserId(HttpServletRequest request);
public float getMajorVersion(HttpServletRequest request);
public String getRevision(HttpServletRequest request);
public String getVersion(HttpServletRequest request);
public boolean isAir(HttpServletRequest request);
public boolean isAndroid(HttpServletRequest request);
public boolean isChrome(HttpServletRequest request);
public boolean isFirefox(HttpServletRequest request);
public boolean isGecko(HttpServletRequest request);
public boolean isIe(HttpServletRequest request);
public boolean isIeOnWin32(HttpServletRequest request);
public boolean isIeOnWin64(HttpServletRequest request);
public boolean isIphone(HttpServletRequest request);
public boolean isLinux(HttpServletRequest request);
public boolean isMac(HttpServletRequest request);
public boolean isMobile(HttpServletRequest request);
public boolean isMozilla(HttpServletRequest request);
public boolean isOpera(HttpServletRequest request);
public boolean isRtf(HttpServletRequest request);
public boolean isSafari(HttpServletRequest request);
public boolean isSun(HttpServletRequest request);
public boolean isWap(HttpServletRequest request);
public boolean isWapXhtml(HttpServletRequest request);
public boolean isWebKit(HttpServletRequest request);
public boolean isWindows(HttpServletRequest request);
public boolean isWml(HttpServletRequest request);
}