Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/java.base/share/classes/javax/net/ssl/SSLSessionContext.java
41159 views
1
/*
2
* Copyright (c) 1997, 2019, 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
27
package javax.net.ssl;
28
29
import java.util.Enumeration;
30
31
32
/**
33
* A <code>SSLSessionContext</code> represents a set of
34
* <code>SSLSession</code>s associated with a single entity. For example,
35
* it could be associated with a server or client who participates in many
36
* sessions concurrently.
37
* <p>
38
* Not all environments will contain session contexts. For example, stateless
39
* session resumption.
40
* <p>
41
* Session contexts may not contain all sessions. For example, stateless
42
* sessions are not stored in the session context.
43
* <p>
44
* There are <code>SSLSessionContext</code> parameters that affect how
45
* sessions are stored:
46
* <UL>
47
* <LI>Sessions can be set to expire after a specified
48
* time limit.
49
* <LI>The number of sessions that can be stored in context
50
* can be limited.
51
* </UL>
52
* A session can be retrieved based on its session id, and all session id's
53
* in a <code>SSLSessionContext</code> can be listed.
54
*
55
* @see SSLSession
56
*
57
* @since 1.4
58
* @author Nathan Abramson
59
* @author David Brownell
60
*/
61
public interface SSLSessionContext {
62
63
/**
64
* Returns the <code>SSLSession</code> bound to the specified session id.
65
*
66
* @param sessionId the Session identifier
67
* @return the <code>SSLSession</code> or null if
68
* the specified session id does not refer to a valid SSLSession.
69
*
70
* @throws NullPointerException if <code>sessionId</code> is null.
71
*/
72
public SSLSession getSession(byte[] sessionId);
73
74
/**
75
* Returns an Enumeration of all known session id's grouped under this
76
* <code>SSLSessionContext</code>.
77
* <p>Session contexts may not contain all sessions. For example,
78
* stateless sessions are not stored in the session context.
79
*
80
* @return an enumeration of all the Session id's
81
*/
82
public Enumeration<byte[]> getIds();
83
84
/**
85
* Sets the timeout limit for <code>SSLSession</code> objects grouped
86
* under this <code>SSLSessionContext</code>.
87
* <p>
88
* If the timeout limit is set to 't' seconds, a session exceeds the
89
* timeout limit 't' seconds after its creation time.
90
* When the timeout limit is exceeded for a session, the
91
* <code>SSLSession</code> object is invalidated and future connections
92
* cannot resume or rejoin the session.
93
* A check for sessions exceeding the timeout is made immediately whenever
94
* the timeout limit is changed for this <code>SSLSessionContext</code>.
95
*
96
* @apiNote Note that the JDK Implementation uses default values for both
97
* the session cache size and timeout. See
98
* {@code getSessionCacheSize} and {@code getSessionTimeout} for
99
* more information. Applications should consider their
100
* performance requirements and override the defaults if necessary.
101
*
102
* @param seconds the new session timeout limit in seconds; zero means
103
* there is no limit.
104
*
105
* @throws IllegalArgumentException if the timeout specified is {@code < 0}.
106
*
107
* @see #getSessionTimeout
108
*/
109
public void setSessionTimeout(int seconds)
110
throws IllegalArgumentException;
111
112
/**
113
* Returns the timeout limit of <code>SSLSession</code> objects grouped
114
* under this <code>SSLSessionContext</code>.
115
* <p>
116
* If the timeout limit is set to 't' seconds, a session exceeds the
117
* timeout limit 't' seconds after its creation time.
118
* When the timeout limit is exceeded for a session, the
119
* <code>SSLSession</code> object is invalidated and future connections
120
* cannot resume or rejoin the session.
121
* A check for sessions exceeding the timeout limit is made immediately
122
* whenever the timeout limit is changed for this
123
* <code>SSLSessionContext</code>.
124
*
125
* @implNote The JDK implementation returns the session timeout as set by
126
* the {@code setSessionTimeout} method, or if not set, a default
127
* value of 86400 seconds (24 hours).
128
*
129
* @return the session timeout limit in seconds; zero means there is no
130
* limit.
131
*
132
* @see #setSessionTimeout
133
*/
134
public int getSessionTimeout();
135
136
/**
137
* Sets the size of the cache used for storing <code>SSLSession</code>
138
* objects grouped under this <code>SSLSessionContext</code>.
139
*
140
* @apiNote Note that the JDK Implementation uses default values for both
141
* the session cache size and timeout. See
142
* {@code getSessionCacheSize} and {@code getSessionTimeout} for
143
* more information. Applications should consider their
144
* performance requirements and override the defaults if necessary.
145
*
146
* @param size the new session cache size limit; zero means there is no
147
* limit.
148
*
149
* @throws IllegalArgumentException if the specified size is {@code < 0}.
150
*
151
* @see #getSessionCacheSize
152
*/
153
public void setSessionCacheSize(int size)
154
throws IllegalArgumentException;
155
156
/**
157
* Returns the size of the cache used for storing <code>SSLSession</code>
158
* objects grouped under this <code>SSLSessionContext</code>.
159
*
160
* @implNote The JDK implementation returns the cache size as set by
161
* the {@code setSessionCacheSize} method, or if not set, the
162
* value of the {@systemProperty javax.net.ssl.sessionCacheSize}
163
* system property. If neither is set, it returns a default
164
* value of 20480.
165
*
166
* @return size of the session cache; zero means there is no size limit.
167
*
168
* @see #setSessionCacheSize
169
*/
170
public int getSessionCacheSize();
171
}
172
173