Package com.microsoft.graph.models
Class SamlOrWsFedProvider
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.IdentityProviderBase
com.microsoft.graph.models.SamlOrWsFedProvider
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
- Direct Known Subclasses:
InternalDomainFederation
,SamlOrWsFedExternalDomainFederation
public class SamlOrWsFedProvider
extends IdentityProviderBase
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Saml Or Ws Fed Provider.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Issuer Uri.The Metadata Exchange Uri.The Passive Sign In Uri.The Preferred Authentication Protocol.The Signing Certificate.Fields inherited from class com.microsoft.graph.models.IdentityProviderBase
displayName
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
setRawObject
(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManager
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
issuerUri
The Issuer Uri. Issuer URI of the federation server. -
metadataExchangeUri
@SerializedName(value="metadataExchangeUri", alternate="MetadataExchangeUri") @Expose @Nullable public String metadataExchangeUriThe Metadata Exchange Uri. URI of the metadata exchange endpoint used for authentication from rich client applications. -
passiveSignInUri
@SerializedName(value="passiveSignInUri", alternate="PassiveSignInUri") @Expose @Nullable public String passiveSignInUriThe Passive Sign In Uri. URI that web-based clients are directed to when signing in to Azure Active Directory (Azure AD) services. -
preferredAuthenticationProtocol
@SerializedName(value="preferredAuthenticationProtocol", alternate="PreferredAuthenticationProtocol") @Expose @Nullable public AuthenticationProtocol preferredAuthenticationProtocolThe Preferred Authentication Protocol. Preferred authentication protocol. Supported values include saml or wsfed. -
signingCertificate
@SerializedName(value="signingCertificate", alternate="SigningCertificate") @Expose @Nullable public String signingCertificateThe Signing Certificate. Current certificate used to sign tokens passed to the Microsoft identity platform. The certificate is formatted as a Base64 encoded string of the public portion of the federated IdP's token signing certificate and must be compatible with the X509Certificate2 class. This property is used in the following scenarios: if a rollover is required outside of the autorollover update a new federation service is being set up if the new token signing certificate isn't present in the federation properties after the federation service certificate has been updated. Azure AD updates certificates via an autorollover process in which it attempts to retrieve a new certificate from the federation service metadata, 30 days before expiry of the current certificate. If a new certificate isn't available, Azure AD monitors the metadata daily and will update the federation settings for the domain when a new certificate is available.
-
-
Constructor Details
-
SamlOrWsFedProvider
public SamlOrWsFedProvider()
-
-
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:
setRawObject
in interfacecom.microsoft.graph.serializer.IJsonBackedObject
- Overrides:
setRawObject
in classIdentityProviderBase
- Parameters:
serializer
- the serializerjson
- the JSON object to set this object to
-