Uses of Class
io.inverno.mod.security.http.cors.CORSInterceptor.Origin
Packages that use CORSInterceptor.Origin
-
Uses of CORSInterceptor.Origin in io.inverno.mod.security.http.cors
Fields in io.inverno.mod.security.http.cors with type parameters of type CORSInterceptor.OriginModifier and TypeFieldDescriptionprotected final Set<CORSInterceptor.Origin> CORSInterceptor.allowedOriginsThe set of allowed origins.protected Set<CORSInterceptor.Origin> CORSInterceptor.Builder.allowedOriginsThe set of allowed origins.Methods in io.inverno.mod.security.http.cors with parameters of type CORSInterceptor.OriginModifier and TypeMethodDescriptionprotected voidCORSInterceptor.checkOrigin(CORSInterceptor.Origin origin) Determines whether the origin is a valid origin.protected booleanCORSInterceptor.isSameOrigin(B exchange, CORSInterceptor.Origin origin) Determines whether the request was issued from the same origin.Constructor parameters in io.inverno.mod.security.http.cors with type arguments of type CORSInterceptor.OriginModifierConstructorDescriptionprotectedCORSInterceptor(Set<CORSInterceptor.Origin> allowedOrigins, Set<Pattern> allowedOriginsPattern, boolean allowCredentials, Set<String> allowedHeaders, Set<io.inverno.mod.http.base.Method> allowedMethods, Set<String> exposedHeaders, Integer maxAge, boolean allowPrivateNetwork) Creates a CORS interceptor.