Package eu.emi.security.authn.x509
Enum ValidationErrorCode
- All Implemented Interfaces:
Serializable
,Comparable<ValidationErrorCode>
,java.lang.constant.Constable
This enumeration contains codes of errors that can be signaled
during certificate path validation. This classification is provided
to allow applications to have fine grained error handling.
This codes are used as keys for getting the messages from the message bundle 'validationErrors' (defined in a properties file).
- Author:
- K. Benedyczak
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionstatic ValidationErrorCode
Returns the enum constant of this type with the specified name.static ValidationErrorCode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
unknown
-
unknownMsg
-
nsUndefinedAndRequired
-
nsDeny
-
nsNotAccepted
-
inputError
-
emptyCertPath
-
invalidCertificatePath
-
proxyEECInChain
-
proxyLength
-
proxyNoIssuer
-
proxyCASet
-
proxyIssuerAltNameSet
-
proxySubjectAltNameSet
-
proxyIssuedByCa
-
proxyNoIssuerSubject
-
proxySubjectInconsistent
-
proxyIssuerNoDsig
-
proxySubjectOneRDN
-
proxySubjectMultiLastRDN
-
proxySubjectLastRDNNotCN
-
proxySubjectBaseWrong
-
proxyTypeInconsistent
-
proxyInconsistentlyLimited
-
noIssuerPublicKey
-
noBasicConstraints
-
pathLenghtExtended
-
conflictingTrustAnchors
-
noTrustAnchorFound
-
trustButInvalidCert
-
signatureNotVerified
-
certificateNotYetValid
-
certificateExpired
-
noCACert
-
noCertSign
-
unknownCriticalExt
-
certWrongIssuer
-
errorProcesingBC
-
QcStatementExtError
-
certPathCheckerError
-
criticalExtensionError
-
unknownCriticalExts
-
pubKeyError
-
processLengthConstError
-
rootKeyIsValidButNotATrustAnchor
-
trustAnchorIssuerError
-
trustDNInvalid
-
trustKeyUsage
-
trustPubKeyError
-
explicitPolicy
-
invalidPolicyMapping
-
invalidPolicy
-
noValidPolicyTree
-
policyConstExtError
-
policyExtError
-
policyInhibitExtError
-
policyMapExtError
-
policyQualifierError
-
excludedDN
-
excludedEmail
-
excludedIP
-
ncExtError
-
ncSubjectNameError
-
notPermittedDN
-
notPermittedEmail
-
notPermittedIP
-
subjAltNameExtError
-
certRevoked
-
noBaseCRL
-
noValidCrlFound
-
noCrlForExpiredCert
-
crlVerifyFailed
-
distrPtExtError
-
crlAuthInfoAccError
-
crlBCExtError
-
crlDistPtExtError
-
crlExtractionError
-
crlIssuerException
-
crlNoIssuerPublicKey
-
crlOnlyAttrCert
-
crlOnlyCaCert
-
crlOnlyUserCert
-
crlReasonExtError
-
onlineCRLWrongCA
-
onlineInvalidCRL
-
noCrlInCertstore
-
noCrlSigningPermited
-
loadCrlDistPointError
-
localInvalidCRL
-
crlUnknownCritExt
-
crlNoIssuerForDP
-
crlNoIssuerAndDP
-
crlIDPAndDPMismatch
-
crlDeltaProblem
-
crlAKIExtError
-
ocspCertRevoked
-
ocspNoResponder
-
ocspResponderQueryError
-
ocspResponseInvalid
-
ocspOtherError
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-