Author: dkulp Date: Tue Feb 28 22:25:21 2012 New Revision: 1294861 URL: http://svn.apache.org/viewvc?rev=1294861&view=rev Log: Merged revisions 1294860 via svn merge from https://svn.apache.org/repos/asf/cxf/branches/2.5.x-fixes
........ r1294860 | dkulp | 2012-02-28 17:24:30 -0500 (Tue, 28 Feb 2012) | 9 lines Merged revisions 1294855 via svn merge from https://svn.apache.org/repos/asf/cxf/trunk ........ r1294855 | dkulp | 2012-02-28 17:20:08 -0500 (Tue, 28 Feb 2012) | 1 line Make cookie public since the getCookies call is public ........ ........ Modified: cxf/branches/2.4.x-fixes/ (props changed) cxf/branches/2.4.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/http/Cookie.java Propchange: cxf/branches/2.4.x-fixes/ ('svn:mergeinfo' removed) Propchange: cxf/branches/2.4.x-fixes/ ------------------------------------------------------------------------------ Binary property 'svnmerge-integrated' - no diff available. Modified: cxf/branches/2.4.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/http/Cookie.java URL: http://svn.apache.org/viewvc/cxf/branches/2.4.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/http/Cookie.java?rev=1294861&r1=1294860&r2=1294861&view=diff ============================================================================== --- cxf/branches/2.4.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/http/Cookie.java (original) +++ cxf/branches/2.4.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/http/Cookie.java Tue Feb 28 22:25:21 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";
