Package org.keycloak.theme
Class ClasspathThemeResourceProviderFactory
java.lang.Object
org.keycloak.theme.ClasspathThemeResourceProviderFactory
- All Implemented Interfaces:
Provider
,ProviderFactory<ThemeResourceProvider>
,ThemeResourceProvider
,ThemeResourceProviderFactory
public class ClasspathThemeResourceProviderFactory
extends Object
implements ThemeResourceProviderFactory, ThemeResourceProvider
-
Field Summary
Modifier and TypeFieldDescriptionprotected final ClassLoader
static final String
static final String
static final String
static final String
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
This is called when the server shuts down.create
(KeycloakSession session) getId()
getMessages
(String baseBundlename, Locale locale) Load the message bundle for the specific name and localegetResourceAsStream
(String path) Load the resource for the specific pathgetTemplate
(String name) Load the template for the specific namevoid
init
(Config.Scope config) Only called once when the factory is first created.protected void
loadMessages
(Properties messages, URL resource) void
postInit
(KeycloakSessionFactory factory) Called after all provider factories have been initializedMethods 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 Details
-
THEME_RESOURCES
- See Also:
-
THEME_RESOURCES_TEMPLATES
- See Also:
-
THEME_RESOURCES_RESOURCES
- See Also:
-
THEME_RESOURCES_MESSAGES
- See Also:
-
classLoader
-
-
Constructor Details
-
ClasspathThemeResourceProviderFactory
public ClasspathThemeResourceProviderFactory() -
ClasspathThemeResourceProviderFactory
-
-
Method Details
-
create
- Specified by:
create
in interfaceProviderFactory<ThemeResourceProvider>
-
getTemplate
Description copied from interface:ThemeResourceProvider
Load the template for the specific name- Specified by:
getTemplate
in interfaceThemeResourceProvider
- Parameters:
name
- the template name- Returns:
- the URL of the template, or null if the template is unknown
- Throws:
IOException
-
getResourceAsStream
Description copied from interface:ThemeResourceProvider
Load the resource for the specific path- Specified by:
getResourceAsStream
in interfaceThemeResourceProvider
- Parameters:
path
- the resource path- Returns:
- an InputStream to read the resource, or null if the resource is unknown
- Throws:
IOException
-
getMessages
Description copied from interface:ThemeResourceProvider
Load the message bundle for the specific name and locale- Specified by:
getMessages
in interfaceThemeResourceProvider
- Parameters:
baseBundlename
- The base name of the bundle, such as "messages" in messages_en.properties.locale
- The locale of the desired message bundle.- Returns:
- The localized messages from the bundle.
- Throws:
IOException
- If bundle can not be read.
-
loadMessages
- Throws:
IOException
-
getId
- Specified by:
getId
in interfaceProviderFactory<ThemeResourceProvider>
-
init
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<ThemeResourceProvider>
-
postInit
Description copied from interface:ProviderFactory
Called after all provider factories have been initialized- Specified by:
postInit
in interfaceProviderFactory<ThemeResourceProvider>
-
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<ThemeResourceProvider>
-