Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
b58040be
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
b58040be
编写于
11月 24, 2012
作者:
X
xuelei
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8001751: Javadoc warnings in JSSE code
Reviewed-by: alanb
上级
d5c4864e
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
9 addition
and
9 deletion
+9
-9
src/share/classes/javax/net/ssl/HostnameVerifier.java
src/share/classes/javax/net/ssl/HostnameVerifier.java
+1
-2
src/share/classes/javax/net/ssl/SNIHostName.java
src/share/classes/javax/net/ssl/SNIHostName.java
+2
-1
src/share/classes/javax/net/ssl/SNIMatcher.java
src/share/classes/javax/net/ssl/SNIMatcher.java
+1
-1
src/share/classes/javax/net/ssl/SNIServerName.java
src/share/classes/javax/net/ssl/SNIServerName.java
+1
-1
src/share/classes/javax/net/ssl/SSLParameters.java
src/share/classes/javax/net/ssl/SSLParameters.java
+2
-2
src/share/classes/javax/net/ssl/SSLSocketFactory.java
src/share/classes/javax/net/ssl/SSLSocketFactory.java
+2
-2
未找到文件。
src/share/classes/javax/net/ssl/HostnameVerifier.java
浏览文件 @
b58040be
/*
/*
* Copyright (c) 2001, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2001,
2012,
Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
*
* This code is free software; you can redistribute it and/or modify it
* This code is free software; you can redistribute it and/or modify it
...
@@ -40,7 +40,6 @@ package javax.net.ssl;
...
@@ -40,7 +40,6 @@ package javax.net.ssl;
* verification fail.
* verification fail.
*
*
* @author Brad R. Wetmore
* @author Brad R. Wetmore
* @see HostnameVerifierFactory
* @since 1.4
* @since 1.4
*/
*/
...
...
src/share/classes/javax/net/ssl/SNIHostName.java
浏览文件 @
b58040be
...
@@ -135,7 +135,8 @@ public final class SNIHostName extends SNIServerName {
...
@@ -135,7 +135,8 @@ public final class SNIHostName extends SNIServerName {
* <A HREF="http://www.ietf.org/rfc/rfc3490.txt">RFC 3490</A>,
* <A HREF="http://www.ietf.org/rfc/rfc3490.txt">RFC 3490</A>,
* <A HREF="http://www.ietf.org/rfc/rfc1122.txt">RFC 1122</A>,
* <A HREF="http://www.ietf.org/rfc/rfc1122.txt">RFC 1122</A>,
* <A HREF="http://www.ietf.org/rfc/rfc1123.txt">RFC 1123</A>)
* <A HREF="http://www.ietf.org/rfc/rfc1123.txt">RFC 1123</A>)
* for {@code encoded} argument, or use {@link SNIHostName(String)} instead.
* for {@code encoded} argument, or use
* {@link SNIHostName#SNIHostName(String)} instead.
* <P>
* <P>
* The {@code encoded} argument is illegal if it:
* The {@code encoded} argument is illegal if it:
* <ul>
* <ul>
...
...
src/share/classes/javax/net/ssl/SNIMatcher.java
浏览文件 @
b58040be
...
@@ -44,7 +44,7 @@ package javax.net.ssl;
...
@@ -44,7 +44,7 @@ package javax.net.ssl;
* @see SNIServerName
* @see SNIServerName
* @see SNIHostName
* @see SNIHostName
* @see SSLParameters#getSNIMatchers()
* @see SSLParameters#getSNIMatchers()
* @see SSLParameters#setSNIMatchers(Collection
<SNIMatcher>
)
* @see SSLParameters#setSNIMatchers(Collection)
*
*
* @since 1.8
* @since 1.8
*/
*/
...
...
src/share/classes/javax/net/ssl/SNIServerName.java
浏览文件 @
b58040be
...
@@ -40,7 +40,7 @@ import java.util.Arrays;
...
@@ -40,7 +40,7 @@ import java.util.Arrays;
* methods that can change the state of an instance once it has been created.
* methods that can change the state of an instance once it has been created.
*
*
* @see SSLParameters#getServerNames()
* @see SSLParameters#getServerNames()
* @see SSLParameters#setServerNames(List
<SNIServerName>
)
* @see SSLParameters#setServerNames(List)
*
*
* @since 1.8
* @since 1.8
*/
*/
...
...
src/share/classes/javax/net/ssl/SSLParameters.java
浏览文件 @
b58040be
...
@@ -343,7 +343,7 @@ public class SSLParameters {
...
@@ -343,7 +343,7 @@ public class SSLParameters {
* @return null or an immutable list of non-null {@link SNIServerName}s
* @return null or an immutable list of non-null {@link SNIServerName}s
*
*
* @see List
* @see List
* @see #setServerNames(List
<SNIServerName>
)
* @see #setServerNames(List)
*
*
* @since 1.8
* @since 1.8
*/
*/
...
@@ -418,7 +418,7 @@ public class SSLParameters {
...
@@ -418,7 +418,7 @@ public class SSLParameters {
* @return null or an immutable collection of non-null {@link SNIMatcher}s
* @return null or an immutable collection of non-null {@link SNIMatcher}s
*
*
* @see SNIMatcher
* @see SNIMatcher
* @see #setSNIMatchers(Collection
<SNIMatcher>
)
* @see #setSNIMatchers(Collection)
*
*
* @since 1.8
* @since 1.8
*/
*/
...
...
src/share/classes/javax/net/ssl/SSLSocketFactory.java
浏览文件 @
b58040be
...
@@ -198,8 +198,8 @@ public abstract class SSLSocketFactory extends SocketFactory
...
@@ -198,8 +198,8 @@ public abstract class SSLSocketFactory extends SocketFactory
* (RFC6066)</A>). Data that has been already removed from the
* (RFC6066)</A>). Data that has been already removed from the
* underlying {@link InputStream} should be loaded into the
* underlying {@link InputStream} should be loaded into the
* {@code consumed} stream before this method is called, perhaps
* {@code consumed} stream before this method is called, perhaps
* using a {@link
ByteArrayInputStream}. When this {@link Socket}
* using a {@link
java.io.ByteArrayInputStream}. When this
* begins handshaking, it will read all of the data in
*
{@link Socket}
begins handshaking, it will read all of the data in
* {@code consumed} until it reaches {@code EOF}, then all further
* {@code consumed} until it reaches {@code EOF}, then all further
* data is read from the underlying {@link InputStream} as
* data is read from the underlying {@link InputStream} as
* usual.
* usual.
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录