⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 client.java

📁 GridSphere 门户 提供一个基于 portlet 的高级开放源代码门户。GridSphere 是在欧盟提供基金的 GridLab 项目下开发的
💻 JAVA
字号:
/* * @author <a href="mailto:novotny@gridsphere.org">Jason Novotny</a> * @version $Id: Client.java 4496 2006-02-08 20:27:04Z wehrens $ */package org.gridsphere.portletcontainer;/** * The <code>Client</code> interface represents the client device that the user connects to the portal with. * It defines methods to obtain information about clients, e.g. browsers running on PCs, WAP phones, PDAs etc. */public interface Client {    /**     * Returns the name of the manufacturer of this client, or null if the name is not available.     *     * @return the manufacturer     */    public String getManufacturer();    /**     * Returns the name of the model of this client, or null if the name is not available.     *     * @return the model     */    public String getModel();    /**     * Returns the version of the model of this client, or null if the version is not available.     *     * @return the version     */    public String getVersion();    /**     * Returns the exact user agent that this client uses to identify itself to the portal.     * If the client does not send a user agent, this method returns null.     *     * @return the user agent     */    public String getUserAgent();    /**     * Returns the preferred mime-type that this client device supports.     *     * @return the mime-type     */    public String getMimeType();    /**     * Returns the preferred markup name that this client device supports.     *     * @return the name of the markup     */    public String getMarkupName();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -