mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8344652: Remove access control context text from SSLEngine and SSLSession APIs
Reviewed-by: jnimeh
This commit is contained in:
parent
82c3612d77
commit
9769ee8697
2 changed files with 1 additions and 25 deletions
|
@ -148,9 +148,6 @@ public interface SSLSession {
|
|||
* replaced. If the new (or existing) {@code value} implements the
|
||||
* {@code SSLSessionBindingListener} interface, the object
|
||||
* represented by {@code value} is notified appropriately.
|
||||
* <p>
|
||||
* For security reasons, the same named values may not be
|
||||
* visible across different access control contexts.
|
||||
*
|
||||
* @param name the name to which the data object will be bound.
|
||||
* This may not be null.
|
||||
|
@ -163,9 +160,6 @@ public interface SSLSession {
|
|||
/**
|
||||
* Returns the object bound to the given name in the session's
|
||||
* application layer data. Returns null if there is no such binding.
|
||||
* <p>
|
||||
* For security reasons, the same named values may not be
|
||||
* visible across different access control contexts.
|
||||
*
|
||||
* @param name the name of the binding to find.
|
||||
* @return the value bound to that name, or null if the binding does
|
||||
|
@ -181,12 +175,8 @@ public interface SSLSession {
|
|||
* bound to the given name. If the bound existing object
|
||||
* implements the {@code SSLSessionBindingListener} interface,
|
||||
* it is notified appropriately.
|
||||
* <p>
|
||||
* For security reasons, the same named values may not be
|
||||
* visible across different access control contexts.
|
||||
*
|
||||
* @param name the name of the object to remove visible
|
||||
* across different access control contexts
|
||||
* @param name the name of the object to remove
|
||||
* @throws IllegalArgumentException if the argument is null.
|
||||
*/
|
||||
void removeValue(String name);
|
||||
|
@ -195,9 +185,6 @@ public interface SSLSession {
|
|||
/**
|
||||
* Returns an array of the names of all the application layer
|
||||
* data objects bound into the Session.
|
||||
* <p>
|
||||
* For security reasons, the same named values may not be
|
||||
* visible across different access control contexts.
|
||||
*
|
||||
* @return a non-null (possibly empty) array of names of the objects
|
||||
* bound to this Session.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue