@@ -148,9 +148,6 @@ public interface SSLSession {
148148 * replaced. If the new (or existing) {@code value} implements the
149149 * {@code SSLSessionBindingListener} interface, the object
150150 * represented by {@code value} is notified appropriately.
151- * <p>
152- * For security reasons, the same named values may not be
153- * visible across different access control contexts.
154151 *
155152 * @param name the name to which the data object will be bound.
156153 * This may not be null.
@@ -163,9 +160,6 @@ public interface SSLSession {
163160 /**
164161 * Returns the object bound to the given name in the session's
165162 * application layer data. Returns null if there is no such binding.
166- * <p>
167- * For security reasons, the same named values may not be
168- * visible across different access control contexts.
169163 *
170164 * @param name the name of the binding to find.
171165 * @return the value bound to that name, or null if the binding does
@@ -181,12 +175,8 @@ public interface SSLSession {
181175 * bound to the given name. If the bound existing object
182176 * implements the {@code SSLSessionBindingListener} interface,
183177 * it is notified appropriately.
184- * <p>
185- * For security reasons, the same named values may not be
186- * visible across different access control contexts.
187178 *
188- * @param name the name of the object to remove visible
189- * across different access control contexts
179+ * @param name the name of the object to remove
190180 * @throws IllegalArgumentException if the argument is null.
191181 */
192182 void removeValue (String name );
@@ -195,9 +185,6 @@ public interface SSLSession {
195185 /**
196186 * Returns an array of the names of all the application layer
197187 * data objects bound into the Session.
198- * <p>
199- * For security reasons, the same named values may not be
200- * visible across different access control contexts.
201188 *
202189 * @return a non-null (possibly empty) array of names of the objects
203190 * bound to this Session.
0 commit comments