Commit e3fe5b9c by Michael Koch Committed by Michael Koch

Security.java: Fixed javadocs all over.

2004-07-17  Michael Koch  <konqueror@gmx.de>

	* java/security/Security.java: Fixed javadocs all over.

From-SVN: r84855
parent 316a1df4
2004-07-17 Michael Koch <konqueror@gmx.de> 2004-07-17 Michael Koch <konqueror@gmx.de>
* java/security/Security.java: Fixed javadocs all over.
2004-07-17 Michael Koch <konqueror@gmx.de>
* gnu/java/awt/EmbeddedWindow.java * gnu/java/awt/EmbeddedWindow.java
(static): Removed. (static): Removed.
(addNotify): Set peer via reflection. (addNotify): Set peer via reflection.
......
...@@ -57,7 +57,7 @@ import java.util.Vector; ...@@ -57,7 +57,7 @@ import java.util.Vector;
* This class centralizes all security properties and common security methods. * This class centralizes all security properties and common security methods.
* One of its primary uses is to manage providers. * One of its primary uses is to manage providers.
* *
* @author Mark Benvenuto <ivymccough@worldnet.att.net> * @author Mark Benvenuto (ivymccough@worldnet.att.net)
*/ */
public final class Security public final class Security
{ {
...@@ -411,7 +411,7 @@ public final class Security ...@@ -411,7 +411,7 @@ public final class Security
* MessageDigest, Cipher, Mac, KeyStore). Returns an empty Set if there is no * MessageDigest, Cipher, Mac, KeyStore). Returns an empty Set if there is no
* provider that supports the specified service. For a complete list of Java * provider that supports the specified service. For a complete list of Java
* cryptographic services, please see the Java Cryptography Architecture API * cryptographic services, please see the Java Cryptography Architecture API
* Specification & Reference. Note: the returned set is immutable. * Specification &amp; Reference. Note: the returned set is immutable.
* *
* @param serviceName the name of the Java cryptographic service (e.g., * @param serviceName the name of the Java cryptographic service (e.g.,
* Signature, MessageDigest, Cipher, Mac, KeyStore). Note: this parameter is * Signature, MessageDigest, Cipher, Mac, KeyStore). Note: this parameter is
...@@ -466,7 +466,7 @@ public final class Security ...@@ -466,7 +466,7 @@ public final class Security
* formats:</p> * formats:</p>
* *
* <ul> * <ul>
* <li><p>&lt;crypto_service>.&lt;algorithm_or_type></p> * <li><p>&lt;crypto_service&gt;.&lt;algorithm_or_type&gt;</p>
* <p>The cryptographic service name must not contain any dots.</p> * <p>The cryptographic service name must not contain any dots.</p>
* <p>A provider satisfies the specified selection criterion iff the * <p>A provider satisfies the specified selection criterion iff the
* provider implements the specified algorithm or type for the specified * provider implements the specified algorithm or type for the specified
...@@ -475,10 +475,10 @@ public final class Security ...@@ -475,10 +475,10 @@ public final class Security
* provider that supplied a CertificateFactory implementation for X.509 * provider that supplied a CertificateFactory implementation for X.509
* certificates.</p></li> * certificates.</p></li>
* *
* <li><p>&lt;crypto_service>.&lt;algorithm_or_type> &lt;attribute_name>:&lt;attribute_value></p> * <li><p>&lt;crypto_service&gt;.&lt;algorithm_or_type&gt; &lt;attribute_name&gt;:&lt;attribute_value&gt;</p>
* <p>The cryptographic service name must not contain any dots. There must * <p>The cryptographic service name must not contain any dots. There must
* be one or more space charaters between the the &lt;algorithm_or_type> * be one or more space charaters between the the &lt;algorithm_or_type&gt;
* and the &lt;attribute_name>.</p> * and the &lt;attribute_name&gt;.</p>
* <p>A provider satisfies this selection criterion iff the provider * <p>A provider satisfies this selection criterion iff the provider
* implements the specified algorithm or type for the specified * implements the specified algorithm or type for the specified
* cryptographic service and its implementation meets the constraint * cryptographic service and its implementation meets the constraint
...@@ -530,17 +530,17 @@ public final class Security ...@@ -530,17 +530,17 @@ public final class Security
* of the following two formats:</p> * of the following two formats:</p>
* *
* <ul> * <ul>
* <li><p>&lt;crypto_service>.&lt;algorithm_or_type></p> * <li><p>&lt;crypto_service&gt;.&lt;algorithm_or_type&gt;</p>
* <p>The cryptographic service name must not contain any dots.</p> * <p>The cryptographic service name must not contain any dots.</p>
* <p>The value associated with the key must be an empty string.</p> * <p>The value associated with the key must be an empty string.</p>
* <p>A provider satisfies this selection criterion iff the provider * <p>A provider satisfies this selection criterion iff the provider
* implements the specified algorithm or type for the specified * implements the specified algorithm or type for the specified
* cryptographic service.</p></li> * cryptographic service.</p></li>
* *
* <li><p>&lt;crypto_service>.&lt;algorithm_or_type> &lt;attribute_name></p> * <li><p>&lt;crypto_service&gt;.&lt;algorithm_or_type&gt; &lt;attribute_name&gt;</p>
* <p>The cryptographic service name must not contain any dots. There must * <p>The cryptographic service name must not contain any dots. There must
* be one or more space charaters between the &lt;algorithm_or_type> and * be one or more space charaters between the &lt;algorithm_or_type&gt; and
* the &lt;attribute_name>.</p> * the &lt;attribute_name&gt;.</p>
* <p>The value associated with the key must be a non-empty string. A * <p>The value associated with the key must be a non-empty string. A
* provider satisfies this selection criterion iff the provider implements * provider satisfies this selection criterion iff the provider implements
* the specified algorithm or type for the specified cryptographic service * the specified algorithm or type for the specified cryptographic service
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment