Package org.apereo.cas.web.flow
Interface DelegatedClientIdentityProviderConfigurationPostProcessor
-
- All Superinterfaces:
java.lang.AutoCloseable,java.io.Closeable,org.springframework.beans.factory.DisposableBean
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface DelegatedClientIdentityProviderConfigurationPostProcessor extends java.io.Closeable, org.springframework.beans.factory.DisposableBean- Since:
- 6.5.0
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default voidclose()default voiddestroy()static DelegatedClientIdentityProviderConfigurationPostProcessornoOp()No op.voidprocess(org.springframework.webflow.execution.RequestContext context, java.util.Set<DelegatedClientIdentityProviderConfiguration> providers)Process.
-
-
-
Method Detail
-
noOp
static DelegatedClientIdentityProviderConfigurationPostProcessor noOp()
No op.- Returns:
- the delegated client identity provider configuration post processor
-
close
default void close() throws java.io.IOException- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Throws:
java.io.IOException
-
destroy
default void destroy() throws java.lang.Exception- Specified by:
destroyin interfaceorg.springframework.beans.factory.DisposableBean- Throws:
java.lang.Exception
-
process
void process(org.springframework.webflow.execution.RequestContext context, java.util.Set<DelegatedClientIdentityProviderConfiguration> providers)Process.- Parameters:
context- the contextproviders- the providers
-
-