Class AAID


  • public final class AAID
    extends java.lang.Object
    Each UAF authenticator MUST have an AAID to identify UAF enabled authenticator models globally. The AAID MUST uniquely identify a specific authenticator model within the range of all UAF-enabled authenticator models made by all authenticator vendors, where authenticators of a specific model must share identical security characteristics within the model (see Security Considerations).

    The AAID is a string with format "V#M", where

    • # is a separator
    • V indicates the authenticator Vendor Code. This code consists of 4 hexadecimal digits.
    • M indicates the authenticator Model Code. This code consists of 4 hexadecimal digits.
    See Also:
    FIDO UAF Protocol Specification ยง3.1.4 Authenticator Attestation ID (AAID) typedef
    • Constructor Summary

      Constructors 
      Constructor Description
      AAID​(java.lang.String value)
      Construct an AAID from its String representation.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object o)  
      java.lang.String getValue()
      The underlying string value of this AAID.
      int hashCode()  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • AAID

        public AAID​(java.lang.String value)
        Construct an AAID from its String representation.

        This is the inverse of getValue().

        Parameters:
        value - a String conforming to the rules specified in the AAID type.
    • Method Detail

      • getValue

        public java.lang.String getValue()
        The underlying string value of this AAID.

        The AAID is a string with format "V#M", where

        • # is a separator
        • V indicates the authenticator Vendor Code. This code consists of 4 hexadecimal digits.
        • M indicates the authenticator Model Code. This code consists of 4 hexadecimal digits.
        See Also:
        Authenticator Attestation ID (AAID) typedef
      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object