jdk/src/share/classes/javax/net/ssl/SSLParameters.java
changeset 14663 49b7de969579
parent 14514 46a8ed03c7fc
child 19823 f0fd09e20528
equal deleted inserted replaced
14662:f62df78810c3 14663:49b7de969579
   341      * <P>
   341      * <P>
   342      *
   342      *
   343      * @return null or an immutable list of non-null {@link SNIServerName}s
   343      * @return null or an immutable list of non-null {@link SNIServerName}s
   344      *
   344      *
   345      * @see List
   345      * @see List
   346      * @see #setServerNames(List<SNIServerName>)
   346      * @see #setServerNames(List)
   347      *
   347      *
   348      * @since 1.8
   348      * @since 1.8
   349      */
   349      */
   350     public final List<SNIServerName> getServerNames() {
   350     public final List<SNIServerName> getServerNames() {
   351         if (sniNames != null) {
   351         if (sniNames != null) {
   416      * extension and continue the handshake.
   416      * extension and continue the handshake.
   417      *
   417      *
   418      * @return null or an immutable collection of non-null {@link SNIMatcher}s
   418      * @return null or an immutable collection of non-null {@link SNIMatcher}s
   419      *
   419      *
   420      * @see SNIMatcher
   420      * @see SNIMatcher
   421      * @see #setSNIMatchers(Collection<SNIMatcher>)
   421      * @see #setSNIMatchers(Collection)
   422      *
   422      *
   423      * @since 1.8
   423      * @since 1.8
   424      */
   424      */
   425     public final Collection<SNIMatcher> getSNIMatchers() {
   425     public final Collection<SNIMatcher> getSNIMatchers() {
   426         if (sniMatchers != null) {
   426         if (sniMatchers != null) {