Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
5b636da5
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看板
提交
5b636da5
编写于
9月 09, 2013
作者:
J
juh
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8024432: Fix doclint issues in java.security
Reviewed-by: darcy, mullan
上级
6fa5d0de
变更
14
隐藏空白更改
内联
并排
Showing
14 changed file
with
65 addition
and
5 deletion
+65
-5
src/share/classes/java/security/AccessController.java
src/share/classes/java/security/AccessController.java
+24
-0
src/share/classes/java/security/AlgorithmParameters.java
src/share/classes/java/security/AlgorithmParameters.java
+1
-0
src/share/classes/java/security/AlgorithmParametersSpi.java
src/share/classes/java/security/AlgorithmParametersSpi.java
+2
-0
src/share/classes/java/security/KeyFactory.java
src/share/classes/java/security/KeyFactory.java
+2
-0
src/share/classes/java/security/KeyFactorySpi.java
src/share/classes/java/security/KeyFactorySpi.java
+2
-0
src/share/classes/java/security/KeyStore.java
src/share/classes/java/security/KeyStore.java
+1
-0
src/share/classes/java/security/Principal.java
src/share/classes/java/security/Principal.java
+2
-1
src/share/classes/java/security/cert/CertPathBuilderSpi.java
src/share/classes/java/security/cert/CertPathBuilderSpi.java
+2
-0
src/share/classes/java/security/cert/CertPathValidatorSpi.java
...hare/classes/java/security/cert/CertPathValidatorSpi.java
+2
-0
src/share/classes/java/security/cert/PKIXRevocationChecker.java
...are/classes/java/security/cert/PKIXRevocationChecker.java
+3
-0
src/share/classes/java/security/interfaces/RSAMultiPrimePrivateCrtKey.java
.../java/security/interfaces/RSAMultiPrimePrivateCrtKey.java
+6
-1
src/share/classes/java/security/interfaces/RSAPrivateCrtKey.java
...re/classes/java/security/interfaces/RSAPrivateCrtKey.java
+6
-1
src/share/classes/java/security/interfaces/RSAPrivateKey.java
...share/classes/java/security/interfaces/RSAPrivateKey.java
+6
-1
src/share/classes/java/security/interfaces/RSAPublicKey.java
src/share/classes/java/security/interfaces/RSAPublicKey.java
+6
-1
未找到文件。
src/share/classes/java/security/AccessController.java
浏览文件 @
5b636da5
...
...
@@ -279,6 +279,9 @@ public final class AccessController {
* <p> Note that any DomainCombiner associated with the current
* AccessControlContext will be ignored while the action is performed.
*
* @param <T> the type of the value returned by the PrivilegedAction's
* {@code run} method.
*
* @param action the action to be performed.
*
* @return the value returned by the action's {@code run} method.
...
...
@@ -305,6 +308,9 @@ public final class AccessController {
* <p> This method preserves the current AccessControlContext's
* DomainCombiner (which may be null) while the action is performed.
*
* @param <T> the type of the value returned by the PrivilegedAction's
* {@code run} method.
*
* @param action the action to be performed.
*
* @return the value returned by the action's {@code run} method.
...
...
@@ -344,6 +350,8 @@ public final class AccessController {
* {@link java.security.SecurityPermission}, then the action is performed
* with no permissions.
*
* @param <T> the type of the value returned by the PrivilegedAction's
* {@code run} method.
* @param action the action to be performed.
* @param context an <i>access control context</i>
* representing the restriction to be applied to the
...
...
@@ -377,6 +385,8 @@ public final class AccessController {
* If the action's {@code run} method throws an (unchecked) exception,
* it will propagate through this method.
*
* @param <T> the type of the value returned by the PrivilegedAction's
* {@code run} method.
* @param action the action to be performed.
* @param context an <i>access control context</i>
* representing the restriction to be applied to the
...
...
@@ -429,6 +439,8 @@ public final class AccessController {
* <p> This method preserves the current AccessControlContext's
* DomainCombiner (which may be null) while the action is performed.
*
* @param <T> the type of the value returned by the PrivilegedAction's
* {@code run} method.
* @param action the action to be performed.
* @param context an <i>access control context</i>
* representing the restriction to be applied to the
...
...
@@ -479,6 +491,9 @@ public final class AccessController {
* <p> Note that any DomainCombiner associated with the current
* AccessControlContext will be ignored while the action is performed.
*
* @param <T> the type of the value returned by the
* PrivilegedExceptionAction's {@code run} method.
*
* @param action the action to be performed
*
* @return the value returned by the action's {@code run} method
...
...
@@ -509,6 +524,9 @@ public final class AccessController {
* <p> This method preserves the current AccessControlContext's
* DomainCombiner (which may be null) while the action is performed.
*
* @param <T> the type of the value returned by the
* PrivilegedExceptionAction's {@code run} method.
*
* @param action the action to be performed.
*
* @return the value returned by the action's {@code run} method
...
...
@@ -585,6 +603,8 @@ public final class AccessController {
* {@link java.security.SecurityPermission}, then the action is performed
* with no permissions.
*
* @param <T> the type of the value returned by the
* PrivilegedExceptionAction's {@code run} method.
* @param action the action to be performed
* @param context an <i>access control context</i>
* representing the restriction to be applied to the
...
...
@@ -622,6 +642,8 @@ public final class AccessController {
* If the action's {@code run} method throws an (unchecked) exception,
* it will propagate through this method.
*
* @param <T> the type of the value returned by the
* PrivilegedExceptionAction's {@code run} method.
* @param action the action to be performed.
* @param context an <i>access control context</i>
* representing the restriction to be applied to the
...
...
@@ -676,6 +698,8 @@ public final class AccessController {
* <p> This method preserves the current AccessControlContext's
* DomainCombiner (which may be null) while the action is performed.
*
* @param <T> the type of the value returned by the
* PrivilegedExceptionAction's {@code run} method.
* @param action the action to be performed.
* @param context an <i>access control context</i>
* representing the restriction to be applied to the
...
...
src/share/classes/java/security/AlgorithmParameters.java
浏览文件 @
5b636da5
...
...
@@ -324,6 +324,7 @@ public class AlgorithmParameters {
* parameters should be returned in an instance of the
* {@code DSAParameterSpec} class.
*
* @param <T> the type of the parameter specification to be returrned
* @param paramSpec the specification class in which
* the parameters should be returned.
*
...
...
src/share/classes/java/security/AlgorithmParametersSpi.java
浏览文件 @
5b636da5
...
...
@@ -102,6 +102,8 @@ public abstract class AlgorithmParametersSpi {
* parameters should be returned in an instance of the
* {@code DSAParameterSpec} class.
*
* @param <T> the type of the parameter specification to be returned
*
* @param paramSpec the specification class in which
* the parameters should be returned.
*
...
...
src/share/classes/java/security/KeyFactory.java
浏览文件 @
5b636da5
...
...
@@ -395,6 +395,8 @@ public class KeyFactory {
* key material should be returned in an instance of the
* {@code DSAPublicKeySpec} class.
*
* @param <T> the type of the key specification to be returned
*
* @param key the key.
*
* @param keySpec the specification class in which
...
...
src/share/classes/java/security/KeyFactorySpi.java
浏览文件 @
5b636da5
...
...
@@ -106,6 +106,8 @@ public abstract class KeyFactorySpi {
* key material should be returned in an instance of the
* {@code DSAPublicKeySpec} class.
*
* @param <T> the type of the key specification to be returned
*
* @param key the key.
*
* @param keySpec the specification class in which
...
...
src/share/classes/java/security/KeyStore.java
浏览文件 @
5b636da5
...
...
@@ -1753,6 +1753,7 @@ public class KeyStore {
/**
* Returns the KeyStore described by this object.
*
* @return the {@code KeyStore} described by this object
* @exception KeyStoreException if an error occured during the
* operation, for example if the KeyStore could not be
* instantiated or loaded
...
...
src/share/classes/java/security/Principal.java
浏览文件 @
5b636da5
/*
* Copyright (c) 1996, 201
2
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 201
3
, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
...
...
@@ -81,6 +81,7 @@ public interface Principal {
* <p>Subclasses may override this with a different implementation, if
* necessary.
*
* @param subject the {@code Subject}
* @return true if {@code subject} is non-null and is
* implied by this principal, or false otherwise.
* @since 1.8
...
...
src/share/classes/java/security/cert/CertPathBuilderSpi.java
浏览文件 @
5b636da5
...
...
@@ -87,6 +87,8 @@ public abstract class CertPathBuilderSpi {
* service providers, this method cannot be abstract and by default throws
* an {@code UnsupportedOperationException}.
*
* @return a {@code CertPathChecker} that this implementation uses to
* check the revocation status of certificates
* @throws UnsupportedOperationException if this method is not supported
* @since 1.8
*/
...
...
src/share/classes/java/security/cert/CertPathValidatorSpi.java
浏览文件 @
5b636da5
...
...
@@ -97,6 +97,8 @@ public abstract class CertPathValidatorSpi {
* service providers, this method cannot be abstract and by default throws
* an {@code UnsupportedOperationException}.
*
* @return a {@code CertPathChecker} that this implementation uses to
* check the revocation status of certificates
* @throws UnsupportedOperationException if this method is not supported
* @since 1.8
*/
...
...
src/share/classes/java/security/cert/PKIXRevocationChecker.java
浏览文件 @
5b636da5
...
...
@@ -103,6 +103,9 @@ public abstract class PKIXRevocationChecker extends PKIXCertPathChecker {
private
Map
<
X509Certificate
,
byte
[]>
ocspResponses
=
Collections
.
emptyMap
();
private
Set
<
Option
>
options
=
Collections
.
emptySet
();
/**
* Default constructor.
*/
protected
PKIXRevocationChecker
()
{}
/**
...
...
src/share/classes/java/security/interfaces/RSAMultiPrimePrivateCrtKey.java
浏览文件 @
5b636da5
/*
* Copyright (c) 2001, 20
0
3, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2001, 20
1
3, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
...
...
@@ -46,6 +46,11 @@ import java.security.spec.RSAOtherPrimeInfo;
public
interface
RSAMultiPrimePrivateCrtKey
extends
RSAPrivateKey
{
/**
* The type fingerprint that is set to indicate
* serialization compatibility with a previous
* version of the type.
*/
static
final
long
serialVersionUID
=
618058533534628008L
;
/**
...
...
src/share/classes/java/security/interfaces/RSAPrivateCrtKey.java
浏览文件 @
5b636da5
/*
* Copyright (c) 1998, 20
0
3, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1998, 20
1
3, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
...
...
@@ -39,6 +39,11 @@ import java.math.BigInteger;
public
interface
RSAPrivateCrtKey
extends
RSAPrivateKey
{
/**
* The type fingerprint that is set to indicate
* serialization compatibility with a previous
* version of the type.
*/
static
final
long
serialVersionUID
=
-
5682214253527700368L
;
/**
...
...
src/share/classes/java/security/interfaces/RSAPrivateKey.java
浏览文件 @
5b636da5
/*
* Copyright (c) 1998, 20
0
3, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1998, 20
1
3, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
...
...
@@ -39,6 +39,11 @@ import java.math.BigInteger;
public
interface
RSAPrivateKey
extends
java
.
security
.
PrivateKey
,
RSAKey
{
/**
* The type fingerprint that is set to indicate
* serialization compatibility with a previous
* version of the type.
*/
static
final
long
serialVersionUID
=
5187144804936595022L
;
/**
...
...
src/share/classes/java/security/interfaces/RSAPublicKey.java
浏览文件 @
5b636da5
/*
* Copyright (c) 1998, 20
0
3, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1998, 20
1
3, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
...
...
@@ -36,6 +36,11 @@ import java.math.BigInteger;
public
interface
RSAPublicKey
extends
java
.
security
.
PublicKey
,
RSAKey
{
/**
* The type fingerprint that is set to indicate
* serialization compatibility with a previous
* version of the type.
*/
static
final
long
serialVersionUID
=
-
8727434096241101194L
;
/**
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录