Return-Path: X-Original-To: apmail-cxf-commits-archive@www.apache.org Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id CECF19714 for ; Tue, 28 Feb 2012 22:20:29 +0000 (UTC) Received: (qmail 62098 invoked by uid 500); 28 Feb 2012 22:20:29 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 62051 invoked by uid 500); 28 Feb 2012 22:20:29 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 62043 invoked by uid 99); 28 Feb 2012 22:20:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Feb 2012 22:20:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Feb 2012 22:20:28 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id F153D23889EA; Tue, 28 Feb 2012 22:20:08 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1294855 - /cxf/trunk/rt/transports/http/src/main/java/org/apache/cxf/transport/http/Cookie.java Date: Tue, 28 Feb 2012 22:20:08 -0000 To: commits@cxf.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120228222008.F153D23889EA@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dkulp Date: Tue Feb 28 22:20:08 2012 New Revision: 1294855 URL: http://svn.apache.org/viewvc?rev=1294855&view=rev Log: Make cookie public since the getCookies call is public Modified: cxf/trunk/rt/transports/http/src/main/java/org/apache/cxf/transport/http/Cookie.java Modified: cxf/trunk/rt/transports/http/src/main/java/org/apache/cxf/transport/http/Cookie.java URL: http://svn.apache.org/viewvc/cxf/trunk/rt/transports/http/src/main/java/org/apache/cxf/transport/http/Cookie.java?rev=1294855&r1=1294854&r2=1294855&view=diff ============================================================================== --- cxf/trunk/rt/transports/http/src/main/java/org/apache/cxf/transport/http/Cookie.java (original) +++ cxf/trunk/rt/transports/http/src/main/java/org/apache/cxf/transport/http/Cookie.java Tue Feb 28 22:20:08 2012 @@ -24,7 +24,7 @@ package org.apache.cxf.transport.http; * session state. * */ -class Cookie { +public class Cookie { public static final String DISCARD_ATTRIBUTE = "discard"; public static final String MAX_AGE_ATTRIBUTE = "max-age"; public static final String PATH_ATTRIBUTE = "path";