io.higgs.http.server.params.HttpCookies Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-s3 Show documentation
Show all versions of http-s3 Show documentation
Higgs HTTP S3 (Single Site Server)
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 - 2025 Weber Informatics LLC | Privacy Policy