Class AuthenticationData
Package com.here.sdk.core
Class AuthenticationData
- java.lang.Object
-
- com.here.sdk.core.AuthenticationData
-
public final class AuthenticationData extends java.lang.ObjectAuthentication data
-
-
Field Summary
Fields Modifier and Type Field Description DurationexpiryTimeExpiration time in seconds as epoch time.java.lang.StringtokenSecure token to be used with other HERE services.
-
Constructor Summary
Constructors Constructor Description AuthenticationData()Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)inthashCode()
-
-
-
Field Detail
-
token
@NonNull public java.lang.String token
Secure token to be used with other HERE services. Note that the HERE SDK itself does not require the use of tokens. Defaults to an empty string.
-
expiryTime
@NonNull public Duration expiryTime
Expiration time in seconds as epoch time. Defaults to 0 seconds.
-
-