Package org.apache.cocoon.environment.http

Examples of org.apache.cocoon.environment.http.HttpCookie


     * or <code>null</code> if there is no match.
     */
    public Object getAttribute(String name, Configuration modeConf,
            Map objectModel) throws ConfigurationException {
       
        HttpCookie cookie = (HttpCookie) getCookieMap(objectModel).get(name);
        String value = (cookie == null ? null : cookie.getValue());
       
        if (getLogger().isDebugEnabled()) {
            getLogger().debug("Cookie[" + name + "]=" + value);
        }
        return value;
View Full Code Here


       
        Iterator it = allCookies.values().iterator();
        List matched = new LinkedList();
        RE regexp = new RE(name);
        while (it.hasNext()) {
            HttpCookie cookie = (HttpCookie) it.next();
            if (regexp.match(cookie.getName())) {
                matched.add(cookie.getValue());
            }
        }
        return matched.toArray();
    }
View Full Code Here

     * or <code>null</code> if there is no match.
     */
    public Object getAttribute(String name, Configuration modeConf,
            Map objectModel) throws ConfigurationException {
       
        HttpCookie cookie = (HttpCookie) getCookieMap(objectModel).get(name);
        String value = (cookie == null ? null : cookie.getValue());
       
        if (getLogger().isDebugEnabled()) {
            getLogger().debug("Cookie[" + name + "]=" + value);
        }
        return value;
View Full Code Here

       
        Iterator it = allCookies.values().iterator();
        List matched = new LinkedList();
        RE regexp = new RE(name);
        while (it.hasNext()) {
            HttpCookie cookie = (HttpCookie) it.next();
            if (regexp.match(cookie.getName())) {
                matched.add(cookie.getValue());
            }
        }
        return matched.toArray();
    }
View Full Code Here

TOP

Related Classes of org.apache.cocoon.environment.http.HttpCookie

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.