Class DigifiedConstants.Authorization

java.lang.Object
io.digified.digified_library.digified.DigifiedConstants.Authorization
Enclosing class:
DigifiedConstants

public static final class DigifiedConstants.Authorization extends Object
Contains the possible authorization results (whether you should allow your user to do a certain action or not)
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    user should be authorized from accessing the action they want to do in your app this means that they have an old verification result that is success full and that the new selfie taken matches the old selfie and it's live as well
    static final int
    used should be forbidden from accessing the action they want to do in your app, either because the old verification is not found, rejected or there is a problem with the new selfie check
    static final int
    the process was interrupted by the user (cancelled the new selfie capturing)
    static final int
    this is the initial value
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • UNKNOWN

      public static final int UNKNOWN
      this is the initial value
      See Also:
    • AUTHORIZE

      public static final int AUTHORIZE
      user should be authorized from accessing the action they want to do in your app this means that they have an old verification result that is success full and that the new selfie taken matches the old selfie and it's live as well
      See Also:
    • INTERRUPTED

      public static final int INTERRUPTED
      the process was interrupted by the user (cancelled the new selfie capturing)
      See Also:
    • FORBID

      public static final int FORBID
      used should be forbidden from accessing the action they want to do in your app, either because the old verification is not found, rejected or there is a problem with the new selfie check
      See Also:
  • Constructor Details

    • Authorization

      public Authorization()