jdk/src/share/classes/java/security/cert/CertPathValidatorException.java
changeset 8163 d9bcc1208691
parent 5506 202f599c92aa
child 18156 edb590d448c5
equal deleted inserted replaced
8162:d91ca3f845b0 8163:d9bcc1208691
     1 /*
     1 /*
     2  * Copyright (c) 2000, 2008, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
   284         UNDETERMINED_REVOCATION_STATUS,
   284         UNDETERMINED_REVOCATION_STATUS,
   285 
   285 
   286         /**
   286         /**
   287          * The signature is invalid.
   287          * The signature is invalid.
   288          */
   288          */
   289         INVALID_SIGNATURE
   289         INVALID_SIGNATURE,
       
   290 
       
   291         /**
       
   292          * The public key or the signature algorithm has been constrained.
       
   293          */
       
   294         ALGORITHM_CONSTRAINED
   290     }
   295     }
   291 }
   296 }