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

📄 portletsessionutil.java

📁 GridSphere 门户 提供一个基于 portlet 的高级开放源代码门户。GridSphere 是在欧盟提供基金的 GridLab 项目下开发的
💻 JAVA
字号:
/** * Copyright 2003 IBM Corporation and Sun Microsystems, Inc. * All rights reserved. * Use is subject to license terms. */package javax.portlet;/** * The <CODE>PortletSessionUtil</CODE>  class helps identify and decode * attributes in the <CODE>PORTLET_SCOPE</CODE> scope of the PortletSession * when accessed through the HttpSession an from within calls to methods * of the HttpSessionBindingListener interface. */public class PortletSessionUtil {    private static final String PORTLET_SCOPE_NAMESPACE = "javax.portlet.p.";    /**     * Returns the attribute name of an attribute in the     * <code>PORTLET_SCOPE</code>. If the attribute is in the     * <code>APPLICATION_SCOPE</code> it returns the attribute name unchanged.     *     * @param name a string specifying the name of the     *             encoded portlet attribute     * @return			the decoded attribute name     */    public static java.lang.String decodeAttributeName(java.lang.String name) {        if (name.startsWith(PORTLET_SCOPE_NAMESPACE)) {            int index = name.indexOf('?');            if (index > -1) {                name = name.substring(index + 1);            }        }        return name;    }    /**     * Returns the portlet attribute scope from an encoded portlet     * attribute.     * <br>Possible return values are:     * <ul>     * <li><code>PortletSession.APPLICATION_SCOPE</code></li>     * <li><code>PortletSession.PORTLET_SCOPE</code></li>     * </ul>     *     * @param name a string specifying the name of the     *             encoded portlet attribute     * @return			the decoded attribute scope     * @see PortletSession     */    public static int decodeScope(java.lang.String name) {        int scope = PortletSession.APPLICATION_SCOPE; // APP        if (name.startsWith(PORTLET_SCOPE_NAMESPACE)) {            int index = name.indexOf('?');            if (index > -1) {                scope = PortletSession.PORTLET_SCOPE; // PORTLET            }        }        return scope;    }}

⌨️ 快捷键说明

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