Changeset 1391 for branches/GNU/src/gcc/libjava/java/security/KeyStore.java
- Timestamp:
- Apr 27, 2004, 8:39:34 PM (22 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
libjava/java/security/KeyStore.java (modified) (4 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc
- Property svn:ignore
-
old new 26 26 configure.vr 27 27 configure.vrs 28 28 29 Makefile 29 dir.info30 30 lost+found 31 31 update.out
-
- Property svn:ignore
-
branches/GNU/src/gcc/libjava/java/security/KeyStore.java
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r1390 r1391 1 1 /* KeyStore.java --- Key Store Class 2 Copyright (C) 1999 Free Software Foundation, Inc.2 Copyright (C) 1999 Free Software Foundation, Inc. 3 3 4 4 This file is part of GNU Classpath. … … 93 93 Gets an instance of the KeyStore class representing 94 94 the specified keystore. If the type is not 95 found then, it throws CertificateException.96 97 @param type the type of certificate to choose95 found then, it throws eException. 96 97 @param type the type of e to choose 98 98 99 99 @return a KeyStore repesenting the desired type … … 118 118 Gets an instance of the KeyStore class representing 119 119 the specified key store from the specified provider. 120 If the type is not found then, it throws CertificateException.120 If the type is not found then, it throws eException. 121 121 If the provider is not found, then it throws 122 122 NoSuchProviderException. 123 123 124 @param type the type of certificate to choose 124 @param type the type of keystore to choose 125 @param provider the provider name 125 126 126 127 @return a KeyStore repesenting the desired type 127 128 128 @throws KeyStoreException if the type of keystore is not implemented by providers 129 @throws KeyStoreException if the type of keystore is not 130 implemented by the given provider 129 131 @throws NoSuchProviderException if the provider is not found 132 133 130 134 */ 131 135 public static KeyStore getInstance(String type, String provider) 132 136 throws KeyStoreException, NoSuchProviderException 133 137 { 138 139 134 140 Provider p = Security.getProvider(provider); 135 141 if (p == null) … … 137 143 138 144 return getInstance(p.getProperty("KeyStore." + type), type, p); 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 139 172 } 140 173 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
