Uses of Class
io.netty.handler.codec.http.cors.CorsConfig
-
Packages that use CorsConfig Package Description io.netty.handler.codec.http.cors This package contains Cross Origin Resource Sharing (CORS) related classes. -
-
Uses of CorsConfig in io.netty.handler.codec.http.cors
Fields in io.netty.handler.codec.http.cors declared as CorsConfig Modifier and Type Field Description private CorsConfig
CorsHandler. config
Fields in io.netty.handler.codec.http.cors with type parameters of type CorsConfig Modifier and Type Field Description private java.util.List<CorsConfig>
CorsHandler. configList
Methods in io.netty.handler.codec.http.cors that return CorsConfig Modifier and Type Method Description CorsConfig
CorsConfig.Builder. build()
Deprecated.UseCorsConfigBuilder.build()
instead.CorsConfig
CorsConfigBuilder. build()
Builds aCorsConfig
with settings specified by previous method calls.private CorsConfig
CorsHandler. getForOrigin(java.lang.String requestOrigin)
Constructors in io.netty.handler.codec.http.cors with parameters of type CorsConfig Constructor Description CorsHandler(CorsConfig config)
Creates a new instance with a singleCorsConfig
.Constructor parameters in io.netty.handler.codec.http.cors with type arguments of type CorsConfig Constructor Description CorsHandler(java.util.List<CorsConfig> configList, boolean isShortCircuit)
Creates a new instance with the specified config list.
-