diff options
author | Michael Koch <konqueror@gmx.de> | 2003-10-11 19:00:07 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2003-10-11 19:00:07 +0000 |
commit | e3ff2b2bb624babf5209b08e9745024e940c1744 (patch) | |
tree | 2af671e2772212be2424269d3f7cca08b3fe5238 /libjava/java/security/cert | |
parent | 6233cbbc8894869291cb257cb37a615d6ff91243 (diff) | |
download | gcc-e3ff2b2bb624babf5209b08e9745024e940c1744.zip gcc-e3ff2b2bb624babf5209b08e9745024e940c1744.tar.gz gcc-e3ff2b2bb624babf5209b08e9745024e940c1744.tar.bz2 |
2003-10-11 Michael Koch <konqueror@gmx.de>
* java/security/Key.java,
* java/security/PrivateKey.java,
* java/security/PublicKey.java,
* java/security/acl/Acl.java,
* java/security/acl/AclEntry.java,
* java/security/acl/Group.java,
* java/security/acl/Owner.java,
* java/security/acl/Permission.java,
* java/security/cert/X509Extension.java,
* java/security/interfaces/DSAKey.java,
* java/security/interfaces/DSAKeyPairGenerator.java,
* java/security/interfaces/DSAParams.java,
* java/security/interfaces/DSAPrivateKey.java,
* java/security/interfaces/DSAPublicKey.java,
* java/security/interfaces/RSAKey.java,
* java/security/interfaces/RSAPrivateCrtKey.java,
* java/security/interfaces/RSAPrivateKey.java,
* java/security/interfaces/RSAPublicKey.java:
Removed redundant modifiers.
From-SVN: r72360
Diffstat (limited to 'libjava/java/security/cert')
-rw-r--r-- | libjava/java/security/cert/X509Extension.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/java/security/cert/X509Extension.java b/libjava/java/security/cert/X509Extension.java index c0fe020..8e33bb5 100644 --- a/libjava/java/security/cert/X509Extension.java +++ b/libjava/java/security/cert/X509Extension.java @@ -81,7 +81,7 @@ public interface X509Extension @return true if has unsupported extension, false otherwise */ - public boolean hasUnsupportedCriticalExtension(); + boolean hasUnsupportedCriticalExtension(); /** Returns a set of the CRITICAL extension OIDs from the @@ -91,7 +91,7 @@ public interface X509Extension @return A Set containing the OIDs. If there are no CRITICAL extensions or extensions at all this returns null. */ - public Set getCriticalExtensionOIDs(); + Set getCriticalExtensionOIDs(); /** Returns a set of the NON-CRITICAL extension OIDs from the @@ -101,13 +101,13 @@ public interface X509Extension @return A Set containing the OIDs. If there are no NON-CRITICAL extensions or extensions at all this returns null. */ - public Set getNonCriticalExtensionOIDs(); + Set getNonCriticalExtensionOIDs(); /** Returns the DER encoded OCTET string for the specified extension value identified by a OID. The OID is a string of number separated by periods. Ex: 12.23.45.67 */ - public byte[] getExtensionValue(String oid); + byte[] getExtensionValue(String oid); } |