portletsessionutil.java

来自「GridSphere 门户 提供一个基于 portlet 的高级开放源代码门户。」· Java 代码 · 共 68 行

JAVA
68
字号
/** * 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 + =
减小字号Ctrl + -
显示快捷键?