Package org.apereo.cas.web
Interface ProtocolEndpointWebSecurityConfigurer<T>
-
- All Superinterfaces:
org.springframework.core.Ordered
public interface ProtocolEndpointWebSecurityConfigurer<T> extends org.springframework.core.Ordered- Since:
- 6.3.0
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default ProtocolEndpointWebSecurityConfigurer<T>configure(T object)Configure.default java.util.List<java.lang.String>getIgnoredEndpoints()Gets base endpoint.default intgetOrder()Get order of this configurer.
-
-
-
Method Detail
-
getOrder
default int getOrder()
Get order of this configurer.- Specified by:
getOrderin interfaceorg.springframework.core.Ordered- Returns:
- the order.
-
getIgnoredEndpoints
default java.util.List<java.lang.String> getIgnoredEndpoints()
Gets base endpoint.- Returns:
- the base endpoint
-
configure
@CanIgnoreReturnValue default ProtocolEndpointWebSecurityConfigurer<T> configure(T object)
Configure.- Parameters:
object- the object- Returns:
- the protocol endpoint configurer
-
-