aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/security/Certificate.java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2003-06-27 16:11:27 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2003-06-27 16:11:27 +0000
commit560d4c592f6f414f6a17a9902b664933930c75fd (patch)
treebe1e28605f04919c28b32d250237716baa073a9b /libjava/java/security/Certificate.java
parent720b7001a630529f3762407d42fb2e811b1da973 (diff)
downloadgcc-560d4c592f6f414f6a17a9902b664933930c75fd.zip
gcc-560d4c592f6f414f6a17a9902b664933930c75fd.tar.gz
gcc-560d4c592f6f414f6a17a9902b664933930c75fd.tar.bz2
2003-06-27 Michael Koch <konqueror@gmx.de>
* 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
Diffstat (limited to 'libjava/java/security/Certificate.java')
-rw-r--r--libjava/java/security/Certificate.java8
1 files changed, 1 insertions, 7 deletions
diff --git a/libjava/java/security/Certificate.java b/libjava/java/security/Certificate.java
index f37d919..5b0f9ae 100644
--- a/libjava/java/security/Certificate.java
+++ b/libjava/java/security/Certificate.java
@@ -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