All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.higgs.http.server.params.HttpCookies Maven / Gradle / Ivy

There is a newer version: 0.0.24
Show newest version
package io.higgs.http.server.params;

import java.util.HashMap;

/**
 * @author Courtney Robinson 
 */
public class HttpCookies extends HashMap {
    public String getValue(String name) {
        HttpCookie cookie = get((Object) name);
        if (cookie != null) {
            return cookie.getValue();
        }
        return null;
    }

    public int getSize() {
        return size();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy