Package org.apache.pluto.container.util

Examples of org.apache.pluto.container.util.NamespacedNamesEnumeration


        {
            servletSession.removeAttribute(this.portletScopeAttrNamePrefix + (String) args[0]);
        }
        else if ("getAttributeNames".equals(m.getName()) && args == null)
        {
            retval = new NamespacedNamesEnumeration(servletSession.getAttributeNames(), this.portletScopeAttrNamePrefix);
        }
        else if ("getValueNames".equals(m.getName()) && args == null)
        {
            final List<String> list = new ArrayList<String>();
            Enumeration<String> e = new NamespacedNamesEnumeration(servletSession.getAttributeNames(), this.portletScopeAttrNamePrefix);
            while (e.hasMoreElements())
            {
                list.add(e.nextElement());
            }
            retval = list.toArray(new String[list.size()]);
        }
        else
        {
View Full Code Here

TOP

Related Classes of org.apache.pluto.container.util.NamespacedNamesEnumeration

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.