1 /*
2  * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * This code is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License version 2 only, as
7  * published by the Free Software Foundation.  Oracle designates this
8  * particular file as subject to the "Classpath" exception as provided
9  * by Oracle in the LICENSE file that accompanied this code.
10  *
11  * This code is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14  * version 2 for more details (a copy is included in the LICENSE file that
15  * accompanied this code).
16  *
17  * You should have received a copy of the GNU General Public License version
18  * 2 along with this work; if not, write to the Free Software Foundation,
19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20  *
21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22  * or visit www.oracle.com if you need additional information or have any
23  * questions.
24  */
25 
26 package java.net;
27 
28 import java.util.Map;
29 import java.util.List;
30 import java.io.IOException;
31 import sun.security.util.SecurityConstants;
32 
33 /**
34  * A CookieHandler object provides a callback mechanism to hook up a
35  * HTTP state management policy implementation into the HTTP protocol
36  * handler. The HTTP state management mechanism specifies a way to
37  * create a stateful session with HTTP requests and responses.
38  *
39  * <p> A system-wide CookieHandler to be used by the {@linkplain
40  * HttpURLConnection HTTP URL stream protocol handler} can be registered by
41  * doing a CookieHandler.setDefault(CookieHandler). The currently registered
42  * CookieHandler can be retrieved by calling
43  * CookieHandler.getDefault().
44  *
45  * For more information on HTTP state management, see <a
46  * href="http://www.ietf.org/rfc/rfc2965.txt"><i>RFC&nbsp;2965: HTTP
47  * State Management Mechanism</i></a>
48  *
49  * @author Yingxian Wang
50  * @since 1.5
51  */
52 public abstract class CookieHandler {
53     /**
54      * The system-wide cookie handler that will apply cookies to the
55      * request headers and manage cookies from the response headers.
56      *
57      * @see setDefault(CookieHandler)
58      * @see getDefault()
59      */
60     private static CookieHandler cookieHandler;
61 
62     /**
63      * Gets the system-wide cookie handler.
64      *
65      * @return the system-wide cookie handler; A null return means
66      *        there is no system-wide cookie handler currently set.
67      * @throws SecurityException
68      *       If a security manager has been installed and it denies
69      * {@link NetPermission}{@code ("getCookieHandler")}
70      * @see #setDefault(CookieHandler)
71      */
getDefault()72     public static synchronized CookieHandler getDefault() {
73         SecurityManager sm = System.getSecurityManager();
74         if (sm != null) {
75             sm.checkPermission(SecurityConstants.GET_COOKIEHANDLER_PERMISSION);
76         }
77         return cookieHandler;
78     }
79 
80     /**
81      * Sets (or unsets) the system-wide cookie handler.
82      *
83      * Note: non-standard http protocol handlers may ignore this setting.
84      *
85      * @param cHandler The HTTP cookie handler, or
86      *       {@code null} to unset.
87      * @throws SecurityException
88      *       If a security manager has been installed and it denies
89      * {@link NetPermission}{@code ("setCookieHandler")}
90      * @see #getDefault()
91      */
setDefault(CookieHandler cHandler)92     public static synchronized void setDefault(CookieHandler cHandler) {
93         SecurityManager sm = System.getSecurityManager();
94         if (sm != null) {
95             sm.checkPermission(SecurityConstants.SET_COOKIEHANDLER_PERMISSION);
96         }
97         cookieHandler = cHandler;
98     }
99 
100     /**
101      * Gets all the applicable cookies from a cookie cache for the
102      * specified uri in the request header.
103      *
104      * <P>The {@code URI} passed as an argument specifies the intended use for
105      * the cookies. In particular the scheme should reflect whether the cookies
106      * will be sent over http, https or used in another context like javascript.
107      * The host part should reflect either the destination of the cookies or
108      * their origin in the case of javascript.</P>
109      * <P>It is up to the implementation to take into account the {@code URI} and
110      * the cookies attributes and security settings to determine which ones
111      * should be returned.</P>
112      *
113      * <P>HTTP protocol implementers should make sure that this method is
114      * called after all request headers related to choosing cookies
115      * are added, and before the request is sent.</P>
116      *
117      * @param uri a {@code URI} representing the intended use for the
118      *            cookies
119      * @param requestHeaders - a Map from request header
120      *            field names to lists of field values representing
121      *            the current request headers
122      * @return an immutable map from state management headers, with
123      *            field names "Cookie" or "Cookie2" to a list of
124      *            cookies containing state information
125      *
126      * @throws IOException if an I/O error occurs
127      * @throws IllegalArgumentException if either argument is null
128      * @see #put(URI, Map)
129      */
130     public abstract Map<String, List<String>>
get(URI uri, Map<String, List<String>> requestHeaders)131         get(URI uri, Map<String, List<String>> requestHeaders)
132         throws IOException;
133 
134     /**
135      * Sets all the applicable cookies, examples are response header
136      * fields that are named Set-Cookie2, present in the response
137      * headers into a cookie cache.
138      *
139      * @param uri a {@code URI} where the cookies come from
140      * @param responseHeaders an immutable map from field names to
141      *            lists of field values representing the response
142      *            header fields returned
143      * @throws  IOException if an I/O error occurs
144      * @throws  IllegalArgumentException if either argument is null
145      * @see #get(URI, Map)
146      */
147     public abstract void
put(URI uri, Map<String, List<String>> responseHeaders)148         put(URI uri, Map<String, List<String>> responseHeaders)
149         throws IOException;
150 }
151