/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2010-2013 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution License("CDDL") (collectively, the "License"). You * may not use this file except in compliance with the License. You can * obtain a copy of the License at * http://glassfish.java.net/public/CDDL+GPL_1_1.html * or packager/legal/LICENSE.txt. See the License for the specific * language governing permissions and limitations under the License. * * When distributing the software, include this License Header Notice in each * file and include the License file at packager/legal/LICENSE.txt. * * GPL Classpath Exception: * Oracle designates this particular file as subject to the "Classpath" * exception as provided by Oracle in the GPL Version 2 section of the License * file that accompanied this code. * * Modifications: * If applicable, add the following below the License Header, with the fields * enclosed by brackets [] replaced by your own identifying information: * "Portions Copyright [year] [name of copyright owner]" * * Contributor(s): * If you wish your version of this file to be governed by only the CDDL or * only the GPL Version 2, indicate your decision by adding "[Contributor] * elects to include this software in this distribution under the [CDDL or GPL * Version 2] license." If you don't indicate a single choice of license, a * recipient has the option to distribute your version of this file under * either the CDDL, the GPL Version 2 or to extend the choice of license to * its licensees as provided above. However, if you add GPL Version 2 code * and therefore, elected the GPL Version 2 license, then the option applies * only if the new code is made subject to such option by the copyright * holder. */ package org.cruxframework.crux.core.server.rest.core; import org.cruxframework.crux.core.server.rest.util.header.CookieHeaderParser; /** * Represents the value of a HTTP cookie, transferred in a request. * RFC 2109 specifies the legal characters for name, * value, path and domain. The default version of 1 corresponds to RFC 2109. * * @author Paul Sandoz * @author Marc Hadley * @see <a href="http://www.ietf.org/rfc/rfc2109.txt">IETF RFC 2109</a> * @since 1.0 */ public class Cookie { /** * Cookies using the default version correspond to RFC 2109. */ public static final int DEFAULT_VERSION = 1; private final String name; private final String value; private final int version; private final String path; private final String domain; /** * Create a new instance. * * @param name the name of the cookie. * @param value the value of the cookie. * @param path the URI path for which the cookie is valid. * @param domain the host domain for which the cookie is valid. * @param version the version of the specification to which the cookie complies. * @throws IllegalArgumentException if name is {@code null}. */ public Cookie(final String name, final String value, final String path, final String domain, final int version) throws IllegalArgumentException { if (name == null) { throw new IllegalArgumentException("name==null"); } this.name = name; this.value = value; this.version = version; this.domain = domain; this.path = path; } /** * Create a new instance. * * @param name the name of the cookie. * @param value the value of the cookie. * @param path the URI path for which the cookie is valid. * @param domain the host domain for which the cookie is valid. * @throws IllegalArgumentException if name is {@code null}. */ public Cookie(final String name, final String value, final String path, final String domain) throws IllegalArgumentException { this(name, value, path, domain, DEFAULT_VERSION); } /** * Create a new instance. * * @param name the name of the cookie. * @param value the value of the cookie. * @throws IllegalArgumentException if name is {@code null}. */ public Cookie(final String name, final String value) throws IllegalArgumentException { this(name, value, null, null); } /** * Creates a new instance of {@code Cookie} by parsing the supplied string. * * @param value the cookie string. * @return the newly created {@code Cookie}. * @throws IllegalArgumentException if the supplied string cannot be parsed * or is {@code null}. */ public static Cookie valueOf(final String value) { return CookieHeaderParser.fromString(value); } /** * Get the name of the cookie. * * @return the cookie name. */ public String getName() { return name; } /** * Get the value of the cookie. * * @return the cookie value. */ public String getValue() { return value; } /** * Get the version of the cookie. * * @return the cookie version. */ public int getVersion() { return version; } /** * Get the domain of the cookie. * * @return the cookie domain. */ public String getDomain() { return domain; } /** * Get the path of the cookie. * * @return the cookie path. */ public String getPath() { return path; } /** * Convert the cookie to a string suitable for use as the value of the * corresponding HTTP header. * * @return a stringified cookie. */ @Override public String toString() { return CookieHeaderParser.toString(this); } /** * Generate a hash code by hashing all of the cookies properties. * * @return the cookie hash code. */ @Override public int hashCode() { int hash = 7; hash = 97 * hash + (this.name != null ? this.name.hashCode() : 0); hash = 97 * hash + (this.value != null ? this.value.hashCode() : 0); hash = 97 * hash + this.version; hash = 97 * hash + (this.path != null ? this.path.hashCode() : 0); hash = 97 * hash + (this.domain != null ? this.domain.hashCode() : 0); return hash; } /** * Compare for equality. * * @param obj the object to compare to. * @return {@code true}, if the object is a {@code Cookie} with the same * value for all properties, {@code false} otherwise. */ @Override public boolean equals(final Object obj) { if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } final Cookie other = (Cookie) obj; if (this.name != other.name && (this.name == null || !this.name.equals(other.name))) { return false; } if (this.value != other.value && (this.value == null || !this.value.equals(other.value))) { return false; } if (this.version != other.version) { return false; } if (this.path != other.path && (this.path == null || !this.path.equals(other.path))) { return false; } if (this.domain != other.domain && (this.domain == null || !this.domain.equals(other.domain))) { return false; } return true; } }