-
- All Implemented Interfaces:
-
android.os.Parcelable
public final class AuthenticationTokenHeader implements Parcelable
This class represents an immutable header for using AuthenticationToken. It includes all metadata or key values of the header
WARNING: This feature is currently in development and not intended for external usage.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classAuthenticationTokenHeader.Companion
-
Constructor Summary
Constructors Constructor Description AuthenticationTokenHeader(String encodedHeaderString)AuthenticationTokenHeader(String alg, String typ, String kid)
-
Method Summary
Modifier and Type Method Description final StringgetAlg()Value that represents the algorithm that was used to sign the JWT. final StringgetTyp()The type of the JWT. final StringgetKid()Key identifier used in identifying the key to be used to verify the signature. UnitwriteToParcel(Parcel dest, Integer flags)IntegerdescribeContents()StringtoString()Booleanequals(Object other)IntegerhashCode()final StringtoEnCodedString()-
-
Method Detail
-
getKid
final String getKid()
Key identifier used in identifying the key to be used to verify the signature.
-
writeToParcel
Unit writeToParcel(Parcel dest, Integer flags)
-
describeContents
Integer describeContents()
-
toEnCodedString
final String toEnCodedString()
-
-
-
-