Enum GHVerification.Reason

    • Enum Constant Detail

      • NOT_SIGNING_KEY

        public static final GHVerification.Reason NOT_SIGNING_KEY
        The usage flags for the key that signed this don't allow signing.
      • GPGVERIFY_ERROR

        public static final GHVerification.Reason GPGVERIFY_ERROR
        The GPG verification service misbehaved.
      • GPGVERIFY_UNAVAILABLE

        public static final GHVerification.Reason GPGVERIFY_UNAVAILABLE
        The GPG verification service is unavailable at the moment.
      • UNKNOWN_SIGNATURE_TYPE

        public static final GHVerification.Reason UNKNOWN_SIGNATURE_TYPE
        Unknown signature type.
      • UNVERIFIED_EMAIL

        public static final GHVerification.Reason UNVERIFIED_EMAIL
        Email used for signing unverified on GitHub.
      • UNKNOWN_KEY

        public static final GHVerification.Reason UNKNOWN_KEY
        Key used for signing not known to GitHub.
      • MALFORMED_SIGNATURE

        public static final GHVerification.Reason MALFORMED_SIGNATURE
        Malformed signature.
      • BAD_CERT

        public static final GHVerification.Reason BAD_CERT
        The signing certificate or its chain could not be verified.
      • MALFORMED_SIG

        public static final GHVerification.Reason MALFORMED_SIG
        Malformed signature. (Returned by graphQL)
      • OCSP_ERROR

        public static final GHVerification.Reason OCSP_ERROR
        Valid signature, though certificate revocation check failed.
      • OCSP_PENDING

        public static final GHVerification.Reason OCSP_PENDING
        Valid signature, pending certificate revocation checking.
      • OCSP_REVOKED

        public static final GHVerification.Reason OCSP_REVOKED
        One or more certificates in chain has been revoked.
    • Method Detail

      • values

        public static GHVerification.Reason[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (GHVerification.Reason c : GHVerification.Reason.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static GHVerification.Reason valueOf​(String name)
        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 name
        NullPointerException - if the argument is null