Class ServletInitContext
java.lang.Object
com.nimbusds.openid.connect.provider.spi.ServletInitContext
- All Implemented Interfaces:
InitContext
Servlet-based context for the initialisation of SPI implementations.
-
Constructor Summary
ConstructorsConstructorDescriptionServletInitContext
(jakarta.servlet.ServletContext servletContext) Creates a new servlet-based SPI initialisation context. -
Method Summary
Modifier and TypeMethodDescriptionorg.infinispan.manager.EmbeddedCacheManager
Returns the Infinispan cache manager.@Nullable InputStream
getResourceAsStream
(String path) Returns the resource located at the named path as an input stream.jakarta.servlet.ServletContext
Returns the servlet context.
-
Constructor Details
-
ServletInitContext
Creates a new servlet-based SPI initialisation context.- Parameters:
servletContext
- The servlet context. Must not benull
.
-
-
Method Details
-
getServletContext
Returns the servlet context.- Specified by:
getServletContext
in interfaceInitContext
- Returns:
- The servlet context.
-
getResourceAsStream
Description copied from interface:InitContext
Returns the resource located at the named path as an input stream. Has the same behaviour asServletContext.getResourceAsStream(java.lang.String)
.- Specified by:
getResourceAsStream
in interfaceInitContext
- Parameters:
path
- The path to the resource, must begin with a '/' and is interpreted as relative to the web application root. Must not benull
.- Returns:
- The resource as an input stream, or
null
if no resource exists at the specified path.
-
getInfinispanCacheManager
Description copied from interface:InitContext
Returns the Infinispan cache manager.- Specified by:
getInfinispanCacheManager
in interfaceInitContext
- Returns:
- The Infinispan cache manager.
-