1
1
/*
2
- * Copyright (c) 1997, 2020 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 1997, 2022 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -70,7 +70,7 @@ public interface SSLSession {
70
70
*
71
71
* @return the Session identifier
72
72
*/
73
- public byte [] getId ();
73
+ byte [] getId ();
74
74
75
75
76
76
/**
@@ -91,7 +91,7 @@ public interface SSLSession {
91
91
* @return the session context used for this session, or null
92
92
* if the context is unavailable.
93
93
*/
94
- public SSLSessionContext getSessionContext ();
94
+ SSLSessionContext getSessionContext ();
95
95
96
96
97
97
/**
@@ -100,7 +100,7 @@ public interface SSLSession {
100
100
*
101
101
* @return the time this Session was created
102
102
*/
103
- public long getCreationTime ();
103
+ long getCreationTime ();
104
104
105
105
106
106
/**
@@ -119,7 +119,7 @@ public interface SSLSession {
119
119
*
120
120
* @return the last time this Session was accessed
121
121
*/
122
- public long getLastAccessedTime ();
122
+ long getLastAccessedTime ();
123
123
124
124
125
125
/**
@@ -132,7 +132,7 @@ public interface SSLSession {
132
132
*
133
133
* @see #isValid()
134
134
*/
135
- public void invalidate ();
135
+ void invalidate ();
136
136
137
137
138
138
/**
@@ -144,7 +144,7 @@ public interface SSLSession {
144
144
*
145
145
* @since 1.5
146
146
*/
147
- public boolean isValid ();
147
+ boolean isValid ();
148
148
149
149
150
150
/**
@@ -166,7 +166,7 @@ public interface SSLSession {
166
166
* @param value the data object to be bound. This may not be null.
167
167
* @throws IllegalArgumentException if either argument is null.
168
168
*/
169
- public void putValue (String name , Object value );
169
+ void putValue (String name , Object value );
170
170
171
171
172
172
/**
@@ -181,7 +181,7 @@ public interface SSLSession {
181
181
* not exist.
182
182
* @throws IllegalArgumentException if the argument is null.
183
183
*/
184
- public Object getValue (String name );
184
+ Object getValue (String name );
185
185
186
186
187
187
/**
@@ -198,7 +198,7 @@ public interface SSLSession {
198
198
* across different access control contexts
199
199
* @throws IllegalArgumentException if the argument is null.
200
200
*/
201
- public void removeValue (String name );
201
+ void removeValue (String name );
202
202
203
203
204
204
/**
@@ -211,7 +211,7 @@ public interface SSLSession {
211
211
* @return a non-null (possibly empty) array of names of the objects
212
212
* bound to this Session.
213
213
*/
214
- public String [] getValueNames ();
214
+ String [] getValueNames ();
215
215
216
216
/**
217
217
* Returns the identity of the peer which was established as part
@@ -231,7 +231,7 @@ public interface SSLSession {
231
231
* been verified
232
232
* @see #getPeerPrincipal()
233
233
*/
234
- public java .security .cert .Certificate [] getPeerCertificates ()
234
+ java .security .cert .Certificate [] getPeerCertificates ()
235
235
throws SSLPeerUnverifiedException ;
236
236
237
237
/**
@@ -254,7 +254,7 @@ public interface SSLSession {
254
254
*
255
255
* @see #getLocalPrincipal()
256
256
*/
257
- public java .security .cert .Certificate [] getLocalCertificates ();
257
+ java .security .cert .Certificate [] getLocalCertificates ();
258
258
259
259
/**
260
260
* Returns the identity of the peer which was identified as part
@@ -291,7 +291,7 @@ public interface SSLSession {
291
291
*/
292
292
@ SuppressWarnings ("removal" )
293
293
@ Deprecated (since ="9" , forRemoval =true )
294
- public default javax .security .cert .X509Certificate []
294
+ default javax .security .cert .X509Certificate []
295
295
getPeerCertificateChain () throws SSLPeerUnverifiedException {
296
296
throw new UnsupportedOperationException (
297
297
"This method is deprecated and marked for removal. Use the " +
@@ -314,7 +314,7 @@ public interface SSLSession {
314
314
*
315
315
* @since 1.5
316
316
*/
317
- public Principal getPeerPrincipal ()
317
+ Principal getPeerPrincipal ()
318
318
throws SSLPeerUnverifiedException ;
319
319
320
320
/**
@@ -330,7 +330,7 @@ public Principal getPeerPrincipal()
330
330
*
331
331
* @since 1.5
332
332
*/
333
- public Principal getLocalPrincipal ();
333
+ Principal getLocalPrincipal ();
334
334
335
335
/**
336
336
* Returns the name of the SSL cipher suite which is used for all
@@ -342,7 +342,7 @@ public Principal getPeerPrincipal()
342
342
*
343
343
* @return the name of the session's cipher suite
344
344
*/
345
- public String getCipherSuite ();
345
+ String getCipherSuite ();
346
346
347
347
/**
348
348
* Returns the standard name of the protocol used for all
@@ -353,7 +353,7 @@ public Principal getPeerPrincipal()
353
353
* @return the standard name of the protocol used for all
354
354
* connections in the session.
355
355
*/
356
- public String getProtocol ();
356
+ String getProtocol ();
357
357
358
358
/**
359
359
* Returns the host name of the peer in this session.
@@ -373,7 +373,7 @@ public Principal getPeerPrincipal()
373
373
* @return the host name of the peer host, or null if no information
374
374
* is available.
375
375
*/
376
- public String getPeerHost ();
376
+ String getPeerHost ();
377
377
378
378
/**
379
379
* Returns the port number of the peer in this session.
@@ -390,7 +390,7 @@ public Principal getPeerPrincipal()
390
390
*
391
391
* @since 1.5
392
392
*/
393
- public int getPeerPort ();
393
+ int getPeerPort ();
394
394
395
395
/**
396
396
* Gets the current size of the largest SSL/TLS/DTLS packet that is
@@ -409,7 +409,7 @@ public Principal getPeerPrincipal()
409
409
*
410
410
* @since 1.5
411
411
*/
412
- public int getPacketBufferSize ();
412
+ int getPacketBufferSize ();
413
413
414
414
415
415
/**
@@ -428,5 +428,5 @@ public Principal getPeerPrincipal()
428
428
*
429
429
* @since 1.5
430
430
*/
431
- public int getApplicationBufferSize ();
431
+ int getApplicationBufferSize ();
432
432
}
0 commit comments