Package com.azure.identity
Class AuthenticationRecord
java.lang.Object
com.azure.identity.AuthenticationRecord
Represents the account information relating to an authentication request
-
Method Summary
Modifier and TypeMethodDescriptionstatic AuthenticationRecord
deserialize
(InputStream inputStream) Deserializes theAuthenticationRecord
from the specifiedInputStream
static Mono<AuthenticationRecord>
deserializeAsync
(InputStream inputStream) Deserializes theAuthenticationRecord
from the specifiedInputStream
Get the authority host used to authenticate the account.Get the client id of the application used for authentication.Get the unique identifier of the account.Get the tenant, which the account authenticated in.Get the user principal name of the account.void
serialize
(OutputStream outputStream) Serializes theAuthenticationRecord
to the specifiedOutputStream
serializeAsync
(OutputStream outputStream) Serializes theAuthenticationRecord
to the specifiedOutputStream
-
Method Details
-
getAuthority
Get the authority host used to authenticate the account.- Returns:
- the authority host.
-
getHomeAccountId
Get the unique identifier of the account.- Returns:
- the account id.
-
getTenantId
Get the tenant, which the account authenticated in.- Returns:
- the tenant id.
-
getClientId
Get the client id of the application used for authentication.- Returns:
- the client id.
-
getUsername
Get the user principal name of the account.- Returns:
- the username.
-
serializeAsync
Serializes theAuthenticationRecord
to the specifiedOutputStream
- Parameters:
outputStream
- TheOutputStream
to which the serialized record will be written to.- Returns:
- A
Mono
containingVoid
-
serialize
Serializes theAuthenticationRecord
to the specifiedOutputStream
- Parameters:
outputStream
- TheOutputStream
to which the serialized record will be written to.
-
deserializeAsync
Deserializes theAuthenticationRecord
from the specifiedInputStream
- Parameters:
inputStream
- TheInputStream
from which the serialized record will be read.- Returns:
- A
Mono
containing theAuthenticationRecord
object.
-
deserialize
Deserializes theAuthenticationRecord
from the specifiedInputStream
- Parameters:
inputStream
- TheInputStream
from which the serialized record will be read.- Returns:
- the
AuthenticationRecord
object.
-