]> gcc.gnu.org Git - gcc.git/commitdiff
2003-06-27 Michael Koch <konqueror@gmx.de>
authorMichael Koch <konqueror@gmx.de>
Fri, 27 Jun 2003 16:11:27 +0000 (16:11 +0000)
committerMichael Koch <mkoch@gcc.gnu.org>
Fri, 27 Jun 2003 16:11:27 +0000 (16:11 +0000)
* java/security/Certificate.java
(getGuarantor): Removed wrong @deprecated tag.
(getPrincipal): Likewise.
(getPublicKey): Likewise.
(encode): Likewise.
(decode): Likewise.
(getFormat): Likewise.
(toString): Likewise.
* java/security/cert/PolicyQualifierInfo.java
(PolicyQualifierInfo): Made final.
* javax/security/auth/x500/X500Principal.java
(serialVersionUID): New member variable.

From-SVN: r68579

libjava/ChangeLog
libjava/java/security/Certificate.java
libjava/java/security/cert/PolicyQualifierInfo.java
libjava/javax/security/auth/x500/X500Principal.java

index 7a861024cb945382975ed754ebf824d0d97a63f6..571bc2a866301decd82fa8719da26f7e6ed25186 100644 (file)
@@ -1,9 +1,17 @@
 2003-06-27  Michael Koch  <konqueror@gmx.de>
 
-       * java/rmi/server/SkeletonNotFoundException.java
-       (SkeletonNotFoundException): Removed wrong @deprecated tag.
-       * java/rmi/server/UnicastRemoteObject.java
-       (exportObject): Made package-private.
+       * java/security/Certificate.java
+       (getGuarantor): Removed wrong @deprecated tag.
+       (getPrincipal): Likewise.
+       (getPublicKey): Likewise.
+       (encode): Likewise.
+       (decode): Likewise.
+       (getFormat): Likewise.
+       (toString): Likewise.
+       * java/security/cert/PolicyQualifierInfo.java
+       (PolicyQualifierInfo): Made final.
+       * javax/security/auth/x500/X500Principal.java
+       (serialVersionUID): New member variable.
 
 2003-06-27  Michael Koch  <konqueror@gmx.de>
 
index f37d919a73341cb761b7c6035eb1dbd4abd89202..5b0f9ae8d213fb793b51f642b8acb573425f7f3b 100644 (file)
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
 obligated to do so.  If you do not wish to do so, delete this
 exception statement from your version. */
 
+
 package java.security;
 
 import java.io.InputStream;
@@ -62,7 +63,6 @@ public interface Certificate
    * this certificate.
    *
    * @return the <code>Principal</code> guaranteeing the certificate
-   * @deprecated this entire interface is deprecated
    */
   Principal getGuarantor();
 
@@ -71,7 +71,6 @@ public interface Certificate
    * this certificate.
    *
    * @return the <code>Principal</code> guaranteed by this certificate
-   * @deprecated this entire interface is deprecated
    */
   Principal getPrincipal();
 
@@ -80,7 +79,6 @@ public interface Certificate
    * is being guaranteed.
    *
    * @return the <code>PublicKey</code> of the Principal being guaranteed
-   * @deprecated this entire interface is deprecated
    */
   PublicKey getPublicKey();
 
@@ -93,7 +91,6 @@ public interface Certificate
    * @throws IOException if an error occurs writing to the stream
    * @see #decode(InputStream)
    * @see #getFormat()
-   * @deprecated this entire interface is deprecated
    */
   void encode(OutputStream out) throws KeyException, IOException;
 
@@ -105,7 +102,6 @@ public interface Certificate
    * @throws IOException if an error occurs reading from the stream
    * @see #encode(OutputStream)
    * @see #getFormat()
-   * @deprecated this entire interface is deprecated
    */
   void decode(InputStream in) throws KeyException, IOException;
 
@@ -115,7 +111,6 @@ public interface Certificate
    * <code>decode</code> methods.
    *
    * @return the encoding format being used
-   * @deprecated this entire interface is deprecated
    */
   String getFormat();
 
@@ -125,7 +120,6 @@ public interface Certificate
    *
    * @param detail true to provided more detailed information
    * @return the string representation
-   * @deprecated this entire interface is deprecated
    */
   String toString(boolean detail);
 } // interface Certificate
index a46b6ba89bebdb639005933ce4bc9d241c805374..8dede47fcb824f214e61dad6bbde3ade28385a5c 100644 (file)
@@ -65,7 +65,7 @@ import gnu.java.security.der.DERWriter;
  *
  * @since JDK 1.4
  */
-public class PolicyQualifierInfo
+public final class PolicyQualifierInfo
 {
 
   // Fields.
index fc72e7b268e4cfa04dac2a09a7db5d3759fc4324..036cab7f91aa4d948eccb610ee0a08c41707b3a7 100644 (file)
@@ -55,6 +55,7 @@ import gnu.java.security.x509.X500DistinguishedName;
 
 public final class X500Principal implements Principal, Serializable
 {
+  private static final long serialVersionUID = -500463348111345721L;
 
   // Constants and fields.
   // ------------------------------------------------------------------------
This page took 0.078314 seconds and 5 git commands to generate.