Package org.keycloak.protocol
Interface ClientInstallationProvider
- 
- All Superinterfaces:
- Provider,- ProviderFactory<ClientInstallationProvider>
 - All Known Implementing Classes:
- DockerComposeYamlInstallationProvider,- DockerRegistryConfigFileInstallationProvider,- DockerVariableOverrideInstallationProvider,- KeycloakOIDCClientInstallation,- KeycloakOIDCJbossSubsystemClientCliInstallation,- KeycloakOIDCJbossSubsystemClientInstallation,- KeycloakSamlClientInstallation,- KeycloakSamlSubsystemCliInstallation,- KeycloakSamlSubsystemInstallation,- ModAuthMellonClientInstallation,- SamlSPDescriptorClientInstallation
 
 public interface ClientInstallationProvider extends Provider, ProviderFactory<ClientInstallationProvider> Provides a template/sample client config adapter file. For example keycloak.json for our OIDC adapter. keycloak-saml.xml for our SAML client adapter- Version:
- $Revision: 1 $
- Author:
- Bill Burke
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.ws.rs.core.ResponsegenerateInstallation(KeycloakSession session, RealmModel realm, ClientModel client, URI serverBaseUri)StringgetDisplayType()StringgetFilename()StringgetHelpText()StringgetMediaType()StringgetProtocol()booleanisDownloadOnly()- 
Methods inherited from interface org.keycloak.provider.ProviderFactoryclose, create, getConfigMetadata, getId, init, order, postInit
 
- 
 
- 
- 
- 
Method Detail- 
generateInstallationjavax.ws.rs.core.Response generateInstallation(KeycloakSession session, RealmModel realm, ClientModel client, URI serverBaseUri) 
 - 
getProtocolString getProtocol() 
 - 
getDisplayTypeString getDisplayType() 
 - 
getHelpTextString getHelpText() 
 - 
getFilenameString getFilename() 
 - 
getMediaTypeString getMediaType() 
 - 
isDownloadOnlyboolean isDownloadOnly() 
 
- 
 
-