Package org.keycloak.social.microsoft
Class MicrosoftIdentityProviderFactory
- java.lang.Object
-
- org.keycloak.broker.provider.AbstractIdentityProviderFactory<MicrosoftIdentityProvider>
-
- org.keycloak.social.microsoft.MicrosoftIdentityProviderFactory
-
- All Implemented Interfaces:
IdentityProviderFactory<MicrosoftIdentityProvider>
,SocialIdentityProviderFactory<MicrosoftIdentityProvider>
,ProviderFactory<MicrosoftIdentityProvider>
public class MicrosoftIdentityProviderFactory extends AbstractIdentityProviderFactory<MicrosoftIdentityProvider> implements SocialIdentityProviderFactory<MicrosoftIdentityProvider>
- Author:
- Vlastimil Elias (velias at redhat dot com)
-
-
Field Summary
Fields Modifier and Type Field Description static String
PROVIDER_ID
-
Constructor Summary
Constructors Constructor Description MicrosoftIdentityProviderFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MicrosoftIdentityProvider
create(KeycloakSession session, IdentityProviderModel model)
Creates anIdentityProvider
based on the configuration contained inmodel
.OAuth2IdentityProviderConfig
createConfig()
Creates a provider specificIdentityProviderModel
instance.String
getId()
String
getName()
A friendly name for this factory.-
Methods inherited from class org.keycloak.broker.provider.AbstractIdentityProviderFactory
close, create, init, parseConfig, postInit
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.keycloak.broker.provider.IdentityProviderFactory
parseConfig
-
Methods inherited from interface org.keycloak.provider.ProviderFactory
close, create, getConfigMetadata, init, order, postInit
-
-
-
-
Field Detail
-
PROVIDER_ID
public static final String PROVIDER_ID
- See Also:
- Constant Field Values
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:IdentityProviderFactory
A friendly name for this factory.
- Specified by:
getName
in interfaceIdentityProviderFactory<MicrosoftIdentityProvider>
- Returns:
-
create
public MicrosoftIdentityProvider create(KeycloakSession session, IdentityProviderModel model)
Description copied from interface:IdentityProviderFactory
Creates an
IdentityProvider
based on the configuration contained inmodel
.- Specified by:
create
in interfaceIdentityProviderFactory<MicrosoftIdentityProvider>
model
- The configuration to be used to create the identity provider.- Returns:
-
createConfig
public OAuth2IdentityProviderConfig createConfig()
Description copied from interface:IdentityProviderFactory
Creates a provider specific
IdentityProviderModel
instance.Providers may want to implement their own
IdentityProviderModel
type so that validations can be performed when managing the provider configuration- Specified by:
createConfig
in interfaceIdentityProviderFactory<MicrosoftIdentityProvider>
- Returns:
- the provider specific instance
-
getId
public String getId()
- Specified by:
getId
in interfaceProviderFactory<MicrosoftIdentityProvider>
-
-