Package org.keycloak.protocol.saml
Class EntityDescriptorDescriptionConverter
- java.lang.Object
-
- org.keycloak.protocol.saml.EntityDescriptorDescriptionConverter
-
- All Implemented Interfaces:
ClientDescriptionConverter
,ClientDescriptionConverterFactory
,Provider
,ProviderFactory<ClientDescriptionConverter>
public class EntityDescriptorDescriptionConverter extends Object implements ClientDescriptionConverter, ClientDescriptionConverterFactory
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
-
Constructor Summary
Constructors Constructor Description EntityDescriptorDescriptionConverter()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
This is called when the server shuts down.ClientRepresentation
convertToInternal(String description)
ClientDescriptionConverter
create(KeycloakSession session)
String
getId()
static String
getServiceURL(SPSSODescriptorType sp, String bindingURI)
Get the service url for the SPstatic SPSSODescriptorType
getSPDescriptor(EntityDescriptorType entityDescriptor)
Get the SP Descriptor from an entity descriptorvoid
init(Config.Scope config)
Only called once when the factory is first created.boolean
isSupported(String description)
void
postInit(KeycloakSessionFactory factory)
Called after all provider factories have been initialized-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.keycloak.provider.ProviderFactory
getConfigMetadata, order
-
-
-
-
Field Detail
-
ID
public static final String ID
- See Also:
- Constant Field Values
-
-
Method Detail
-
isSupported
public boolean isSupported(String description)
- Specified by:
isSupported
in interfaceClientDescriptionConverterFactory
-
convertToInternal
public ClientRepresentation convertToInternal(String description)
- Specified by:
convertToInternal
in interfaceClientDescriptionConverter
-
getSPDescriptor
public static SPSSODescriptorType getSPDescriptor(EntityDescriptorType entityDescriptor)
Get the SP Descriptor from an entity descriptor- Parameters:
entityDescriptor
-- Returns:
-
getServiceURL
public static String getServiceURL(SPSSODescriptorType sp, String bindingURI)
Get the service url for the SP- Parameters:
sp
-bindingURI
-- Returns:
-
create
public ClientDescriptionConverter create(KeycloakSession session)
- Specified by:
create
in interfaceProviderFactory<ClientDescriptionConverter>
-
init
public void init(Config.Scope config)
Description copied from interface:ProviderFactory
Only called once when the factory is first created. This config is pulled from keycloak_server.json- Specified by:
init
in interfaceProviderFactory<ClientDescriptionConverter>
-
postInit
public void postInit(KeycloakSessionFactory factory)
Description copied from interface:ProviderFactory
Called after all provider factories have been initialized- Specified by:
postInit
in interfaceProviderFactory<ClientDescriptionConverter>
-
close
public void close()
Description copied from interface:ProviderFactory
This is called when the server shuts down.- Specified by:
close
in interfaceProvider
- Specified by:
close
in interfaceProviderFactory<ClientDescriptionConverter>
-
getId
public String getId()
- Specified by:
getId
in interfaceProviderFactory<ClientDescriptionConverter>
-
-