mirror of
https://github.com/openjdk/jdk.git
synced 2026-05-10 05:29:48 +00:00
8178014: CryptoPolicyParser's API comment contains < and > characters
Reviewed-by: ksrini, mullan
This commit is contained in:
parent
ea8aed80d3
commit
0eb6c339c3
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1997, 2017, 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
|
||||
@ -93,7 +93,7 @@ public class CipherInputStream extends FilterInputStream {
|
||||
// stream status
|
||||
private boolean closed = false;
|
||||
|
||||
/**
|
||||
/*
|
||||
* private convenience function.
|
||||
*
|
||||
* Entry condition: ostart = ofinish
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1999, 2017, 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
|
||||
@ -196,19 +196,19 @@ class CryptoPermission extends java.security.Permission {
|
||||
* Checks if the specified permission is "implied" by
|
||||
* this object.
|
||||
* <p>
|
||||
* More specifically, this method returns true if:<p>
|
||||
* More specifically, this method returns true if:
|
||||
* <ul>
|
||||
* <li> <i>p</i> is an instance of CryptoPermission, and<p>
|
||||
* <li> <i>p</i> is an instance of CryptoPermission, and</li>
|
||||
* <li> <i>p</i>'s algorithm name equals or (in the case of wildcards)
|
||||
* is implied by this permission's algorithm name, and<p>
|
||||
* is implied by this permission's algorithm name, and</li>
|
||||
* <li> <i>p</i>'s maximum allowable key size is less or
|
||||
* equal to this permission's maximum allowable key size, and<p>
|
||||
* equal to this permission's maximum allowable key size, and</li>
|
||||
* <li> <i>p</i>'s algorithm parameter spec equals or is
|
||||
* implied by this permission's algorithm parameter spec, and<p>
|
||||
* implied by this permission's algorithm parameter spec, and</li>
|
||||
* <li> <i>p</i>'s exemptionMechanism equals or
|
||||
* is implied by this permission's
|
||||
* exemptionMechanism (a <code>null</code> exemption mechanism
|
||||
* implies any other exemption mechanism).
|
||||
* implies any other exemption mechanism).</li>
|
||||
* </ul>
|
||||
*
|
||||
* @param p the permission to check against.
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1999, 2017, 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,10 +46,12 @@ import java.lang.reflect.*;
|
||||
*
|
||||
* The format of a permission entry in the jurisdiction policy file is:
|
||||
*
|
||||
* <pre>{@code
|
||||
* permission <crypto permission class name>[, <algorithm name>
|
||||
* [[, <exemption mechanism name>][, <maxKeySize>
|
||||
* [, <AlgrithomParameterSpec class name>, <parameters
|
||||
* for constructing an AlgrithomParameterSpec object>]]]];
|
||||
* }</pre>
|
||||
*
|
||||
* @author Sharon Liu
|
||||
*
|
||||
@ -526,8 +528,7 @@ final class CryptoPolicyParser {
|
||||
|
||||
/**
|
||||
* Each grant entry in the policy configuration file is represented by a
|
||||
* GrantEntry object. <p>
|
||||
*
|
||||
* GrantEntry object.
|
||||
* <p>
|
||||
* For example, the entry
|
||||
* <pre>
|
||||
@ -587,8 +588,7 @@ final class CryptoPolicyParser {
|
||||
|
||||
/**
|
||||
* Each crypto permission entry in the policy configuration file is
|
||||
* represented by a CryptoPermissionEntry object. <p>
|
||||
*
|
||||
* represented by a CryptoPermissionEntry object.
|
||||
* <p>
|
||||
* For example, the entry
|
||||
* <pre>
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2005, 2017, 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
|
||||
@ -41,7 +41,7 @@ import javax.xml.crypto.XMLCryptoContext;
|
||||
* (for example, you should not use the same <code>XMLSignContext</code>
|
||||
* instance to sign two different {@link XMLSignature} objects).
|
||||
* <p>
|
||||
* <b><a name="SupportedProperties"></a>Supported Properties</b>
|
||||
* <b><a id="SupportedProperties"></a>Supported Properties</b>
|
||||
* <p>The following properties can be set using the
|
||||
* {@link #setProperty setProperty} method.
|
||||
* <ul>
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2005, 2017, 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
|
||||
@ -40,7 +40,7 @@ import javax.xml.crypto.XMLCryptoContext;
|
||||
* (for example, you should not use the same <code>XMLValidateContext</code>
|
||||
* instance to validate two different {@link XMLSignature} objects).
|
||||
* <p>
|
||||
* <b><a name="SupportedProperties"></a>Supported Properties</b>
|
||||
* <b><a id="SupportedProperties"></a>Supported Properties</b>
|
||||
* <p>The following properties can be set by an application using the
|
||||
* {@link #setProperty setProperty} method.
|
||||
* <ul>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user