Package com.microsoft.graph.models
Class InternalDomainFederation
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.IdentityProviderBase
com.microsoft.graph.models.SamlOrWsFedProvider
com.microsoft.graph.models.InternalDomainFederation
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class InternalDomainFederation
extends SamlOrWsFedProvider
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Internal Domain Federation.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Active Sign In Uri.The Federated Idp Mfa Behavior.The Is Signed Authentication Request Required.The Next Signing Certificate.The Prompt Login Behavior.The Signing Certificate Update Status.The Sign Out Uri.Fields inherited from class com.microsoft.graph.models.SamlOrWsFedProvider
issuerUri, metadataExchangeUri, passiveSignInUri, preferredAuthenticationProtocol, signingCertificateFields inherited from class com.microsoft.graph.models.IdentityProviderBase
displayName -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManagerMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
activeSignInUri
@SerializedName(value="activeSignInUri", alternate="ActiveSignInUri") @Expose @Nullable public String activeSignInUriThe Active Sign In Uri. URL of the endpoint used by active clients when authenticating with federated domains set up for single sign-on in Azure Active Directory (Azure AD). Corresponds to the ActiveLogOnUri property of the Set-MsolDomainFederationSettings MSOnline v1 PowerShell cmdlet. -
federatedIdpMfaBehavior
@SerializedName(value="federatedIdpMfaBehavior", alternate="FederatedIdpMfaBehavior") @Expose @Nullable public FederatedIdpMfaBehavior federatedIdpMfaBehaviorThe Federated Idp Mfa Behavior. Determines whether Azure AD accepts the MFA performed by the federated IdP when a federated user accesses an application that is governed by a conditional access policy that requires MFA. The possible values are: acceptIfMfaDoneByFederatedIdp, enforceMfaByFederatedIdp, rejectMfaByFederatedIdp, unknownFutureValue. For more information, see federatedIdpMfaBehavior values. -
isSignedAuthenticationRequestRequired
@SerializedName(value="isSignedAuthenticationRequestRequired", alternate="IsSignedAuthenticationRequestRequired") @Expose @Nullable public Boolean isSignedAuthenticationRequestRequiredThe Is Signed Authentication Request Required. If true, when SAML authentication requests are sent to the federated SAML IdP, Azure AD will sign those requests using the OrgID signing key. If false (default), the SAML authentication requests sent to the federated IdP are not signed. -
nextSigningCertificate
@SerializedName(value="nextSigningCertificate", alternate="NextSigningCertificate") @Expose @Nullable public String nextSigningCertificateThe Next Signing Certificate. Fallback token signing certificate that is used to sign tokens when the primary signing certificate expires. Formatted as Base64 encoded strings of the public portion of the federated IdP's token signing certificate. Needs to be compatible with the X509Certificate2 class. Much like the signingCertificate, the nextSigningCertificate property is used if a rollover is required outside of the auto-rollover update, a new federation service is being set up, or if the new token signing certificate is not present in the federation properties after the federation service certificate has been updated. -
promptLoginBehavior
@SerializedName(value="promptLoginBehavior", alternate="PromptLoginBehavior") @Expose @Nullable public PromptLoginBehavior promptLoginBehaviorThe Prompt Login Behavior. Sets the preferred behavior for the sign-in prompt. The possible values are: translateToFreshPasswordAuthentication, nativeSupport, disabled, unknownFutureValue. -
signingCertificateUpdateStatus
@SerializedName(value="signingCertificateUpdateStatus", alternate="SigningCertificateUpdateStatus") @Expose @Nullable public SigningCertificateUpdateStatus signingCertificateUpdateStatusThe Signing Certificate Update Status. Provides status and timestamp of the last update of the signing certificate. -
signOutUri
@SerializedName(value="signOutUri", alternate="SignOutUri") @Expose @Nullable public String signOutUriThe Sign Out Uri. URI that clients are redirected to when they sign out of Azure AD services. Corresponds to the LogOffUri property of the Set-MsolDomainFederationSettings MSOnline v1 PowerShell cmdlet.
-
-
Constructor Details
-
InternalDomainFederation
public InternalDomainFederation()
-
-
Method Details
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Overrides:
setRawObjectin classSamlOrWsFedProvider- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-