Class SamlSPDescriptorClientInstallation
- java.lang.Object
-
- org.keycloak.protocol.saml.installation.SamlSPDescriptorClientInstallation
-
- All Implemented Interfaces:
ClientInstallationProvider
,Provider
,ProviderFactory<ClientInstallationProvider>
public class SamlSPDescriptorClientInstallation extends Object implements ClientInstallationProvider
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
-
Field Summary
Fields Modifier and Type Field Description protected static org.jboss.logging.Logger
logger
static String
SAML_CLIENT_INSTALATION_SP_DESCRIPTOR
-
Constructor Summary
Constructors Constructor Description SamlSPDescriptorClientInstallation()
-
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.ClientInstallationProvider
create(KeycloakSession session)
javax.ws.rs.core.Response
generateInstallation(KeycloakSession session, RealmModel realm, ClientModel client, URI serverBaseUri)
String
getDisplayType()
String
getFilename()
String
getHelpText()
String
getId()
String
getMediaType()
String
getProtocol()
static String
getSPDescriptorForClient(ClientModel client)
void
init(Config.Scope config)
Only called once when the factory is first created.boolean
isDownloadOnly()
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
-
logger
protected static final org.jboss.logging.Logger logger
-
SAML_CLIENT_INSTALATION_SP_DESCRIPTOR
public static final String SAML_CLIENT_INSTALATION_SP_DESCRIPTOR
- See Also:
- Constant Field Values
-
-
Method Detail
-
getSPDescriptorForClient
public static String getSPDescriptorForClient(ClientModel client)
-
generateInstallation
public javax.ws.rs.core.Response generateInstallation(KeycloakSession session, RealmModel realm, ClientModel client, URI serverBaseUri)
- Specified by:
generateInstallation
in interfaceClientInstallationProvider
-
getProtocol
public String getProtocol()
- Specified by:
getProtocol
in interfaceClientInstallationProvider
-
getDisplayType
public String getDisplayType()
- Specified by:
getDisplayType
in interfaceClientInstallationProvider
-
getHelpText
public String getHelpText()
- Specified by:
getHelpText
in interfaceClientInstallationProvider
-
getFilename
public String getFilename()
- Specified by:
getFilename
in interfaceClientInstallationProvider
-
getMediaType
public String getMediaType()
- Specified by:
getMediaType
in interfaceClientInstallationProvider
-
isDownloadOnly
public boolean isDownloadOnly()
- Specified by:
isDownloadOnly
in interfaceClientInstallationProvider
-
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<ClientInstallationProvider>
-
create
public ClientInstallationProvider create(KeycloakSession session)
- Specified by:
create
in interfaceProviderFactory<ClientInstallationProvider>
-
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<ClientInstallationProvider>
-
postInit
public void postInit(KeycloakSessionFactory factory)
Description copied from interface:ProviderFactory
Called after all provider factories have been initialized- Specified by:
postInit
in interfaceProviderFactory<ClientInstallationProvider>
-
getId
public String getId()
- Specified by:
getId
in interfaceProviderFactory<ClientInstallationProvider>
-
-