Ignore:
Timestamp:
Apr 27, 2004, 8:39:34 PM (22 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/libjava/java/security/KeyStore.java

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    11/* KeyStore.java --- Key Store Class
    2    Copyright (C) 1999 Free Software Foundation, Inc.
     2   Copyright (C) 1999 Free Software Foundation, Inc.
    33
    44This file is part of GNU Classpath.
     
    9393     Gets an instance of the KeyStore class representing
    9494     the specified keystore. If the type is not
    95      found then, it throws CertificateException.
    96 
    97      @param type the type of certificate to choose
     95     found then, it throws eException.
     96
     97     @param type the type of e to choose
    9898
    9999     @return a KeyStore repesenting the desired type
     
    118118     Gets an instance of the KeyStore class representing
    119119     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.
    121121     If the provider is not found, then it throws
    122122     NoSuchProviderException.
    123123
    124      @param type the type of certificate to choose
     124     @param type the type of keystore to choose
     125     @param provider the provider name
    125126
    126127     @return a KeyStore repesenting the desired type
    127128
    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
    129131     @throws NoSuchProviderException if the provider is not found
     132
     133
    130134   */
    131135  public static KeyStore getInstance(String type, String provider)
    132136    throws KeyStoreException, NoSuchProviderException
    133137  {
     138
     139
    134140    Provider p = Security.getProvider(provider);
    135141    if (p == null)
     
    137143
    138144    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
    139172  }
    140173
Note: See TracChangeset for help on using the changeset viewer.