Class AppId
- java.lang.Object
-
- com.yubico.webauthn.extension.appid.AppId
-
public final class AppId extends java.lang.ObjectA FIDO AppID verified to be syntactically valid.- See Also:
- FIDO AppID and Facet Specification
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)java.lang.StringgetId()The underlying string representation of this AppID.inthashCode()java.lang.StringtoString()
-
-
-
Constructor Detail
-
AppId
public AppId(@NonNull @NonNull java.lang.String appId) throws InvalidAppIdExceptionVerify that theappIdis a valid FIDO AppID, and wrap it as anAppId.- Throws:
InvalidAppIdException- ifappIdis not a valid FIDO AppID.- See Also:
- FIDO AppID and Facet Specification
-
-
Method Detail
-
getId
public java.lang.String getId()
The underlying string representation of this AppID.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-