Imported GNU Classpath 0.90
Imported GNU Classpath 0.90 * scripts/makemake.tcl: LocaleData.java moved to gnu/java/locale. * sources.am: Regenerated. * gcj/javaprims.h: Regenerated. * Makefile.in: Regenerated. * gcj/Makefile.in: Regenerated. * include/Makefile.in: Regenerated. * testsuite/Makefile.in: Regenerated. * gnu/java/lang/VMInstrumentationImpl.java: New override. * gnu/java/net/local/LocalSocketImpl.java: Likewise. * gnu/classpath/jdwp/VMMethod.java: Likewise. * gnu/classpath/jdwp/VMVirtualMachine.java: Update to latest interface. * java/lang/Thread.java: Add UncaughtExceptionHandler. * java/lang/reflect/Method.java: Implements GenericDeclaration and isSynthetic(), * java/lang/reflect/Field.java: Likewise. * java/lang/reflect/Constructor.java * java/lang/Class.java: Implements Type, GenericDeclaration, getSimpleName() and getEnclosing*() methods. * java/lang/Class.h: Add new public methods. * java/lang/Math.java: Add signum(), ulp() and log10(). * java/lang/natMath.cc (log10): New function. * java/security/VMSecureRandom.java: New override. * java/util/logging/Logger.java: Updated to latest classpath version. * java/util/logging/LogManager.java: New override. From-SVN: r113887
This commit is contained in:
parent
eaec4980e1
commit
4f9533c772
1640 changed files with 126485 additions and 104808 deletions
|
@ -38,6 +38,8 @@ exception statement from your version. */
|
|||
|
||||
package java.security.cert;
|
||||
|
||||
import java.security.InvalidAlgorithmParameterException;
|
||||
|
||||
/**
|
||||
* The <i>service provider interface</i> (<b>SPI</b>) for the {@link
|
||||
* CertPathValidator} class. Providers implementing certificate path
|
||||
|
@ -75,5 +77,5 @@ public abstract class CertPathValidatorSpi
|
|||
public abstract CertPathValidatorResult
|
||||
engineValidate(CertPath certPath, CertPathParameters params)
|
||||
throws CertPathValidatorException,
|
||||
java.security.InvalidAlgorithmParameterException;
|
||||
InvalidAlgorithmParameterException;
|
||||
}
|
||||
|
|
|
@ -38,6 +38,7 @@ exception statement from your version. */
|
|||
|
||||
package java.security.cert;
|
||||
|
||||
import java.security.InvalidAlgorithmParameterException;
|
||||
import java.util.Collection;
|
||||
|
||||
/**
|
||||
|
@ -69,7 +70,7 @@ public abstract class CertStoreSpi
|
|||
* parameters are inappropriate for this class.
|
||||
*/
|
||||
public CertStoreSpi(CertStoreParameters params)
|
||||
throws java.security.InvalidAlgorithmParameterException
|
||||
throws InvalidAlgorithmParameterException
|
||||
{
|
||||
super();
|
||||
}
|
||||
|
|
|
@ -73,7 +73,7 @@ import java.security.SignatureException;
|
|||
*/
|
||||
public abstract class Certificate implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -6751606818319535583L;
|
||||
private static final long serialVersionUID = -3585440601605666277L;
|
||||
|
||||
private String type;
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ import java.util.Set;
|
|||
*
|
||||
* <p>Concrete subclasses can be passed to the {@link
|
||||
* PKIXParameters#setCertPathCheckers(java.util.List)} and {@link
|
||||
* PKIXParameters#addCertPathChecker(java.security.cert.PKIXCertPathChecker}
|
||||
* PKIXParameters#addCertPathChecker(java.security.cert.PKIXCertPathChecker)}
|
||||
* methods, which are then used to set up PKIX certificate chain
|
||||
* builders or validators. These classes then call the {@link
|
||||
* #check(java.security.cert.Certificate,java.util.Collection)} method
|
||||
|
|
|
@ -55,7 +55,7 @@ import java.util.Set;
|
|||
* Parameters for verifying certificate paths using the PKIX
|
||||
* (Public-Key Infrastructure (X.509)) algorithm.
|
||||
*
|
||||
* @see CertPathBulider
|
||||
* @see CertPathBuilder
|
||||
*/
|
||||
public class PKIXParameters implements CertPathParameters
|
||||
{
|
||||
|
|
|
@ -367,7 +367,7 @@ public class X509CertSelector implements CertSelector, Cloneable
|
|||
* Sets the authority key identifier criterion, or <code>null</code> to clear
|
||||
* this criterion. Note that the byte array is cloned to prevent modification.
|
||||
*
|
||||
* @param subjectKeyId The subject key identifier.
|
||||
* @param authKeyId The authority key identifier.
|
||||
*/
|
||||
public void setAuthorityKeyIdentifier(byte[] authKeyId)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue