Package org.apache.commons.chain.web

Examples of org.apache.commons.chain.web.MockEnumeration


            return null;
        }
     }

    public Enumeration getPropertyNames() {
        return new MockEnumeration(properties.keySet().iterator());
    }
View Full Code Here


        return getAttributeNames(PortletSession.PORTLET_SCOPE);
    }

    public Enumeration getAttributeNames(int scope) {
        accessed();
        return new MockEnumeration(getScope(scope).keySet().iterator());
    }
View Full Code Here

        return (attributes.get(name));
    }


    public Enumeration getAttributeNames() {
        return (new MockEnumeration(attributes.keySet().iterator()));
    }
View Full Code Here

TOP

Related Classes of org.apache.commons.chain.web.MockEnumeration

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.