Module io.helidon.webserver.cors
Package io.helidon.webserver.cors
Class CorsConfig.BuilderBase<BUILDER extends CorsConfig.BuilderBase<BUILDER,PROTOTYPE>,PROTOTYPE extends CorsConfig>  
java.lang.Object
io.helidon.webserver.cors.CorsConfig.BuilderBase<BUILDER,PROTOTYPE> 
- Type Parameters:
- BUILDER- type of the builder extending this abstract builder
- PROTOTYPE- type of the prototype interface that would be built by- Prototype.Builder.buildPrototype()
- All Implemented Interfaces:
- Prototype.Builder<BUILDER,,- PROTOTYPE> - ConfigBuilderSupport.ConfiguredBuilder<BUILDER,,- PROTOTYPE> - ConfigBuilderSupport.ConfiguredBuilder<BUILDER,- PROTOTYPE> 
- Direct Known Subclasses:
- CorsConfig.Builder
- Enclosing interface:
- CorsConfig
public abstract static class CorsConfig.BuilderBase<BUILDER extends CorsConfig.BuilderBase<BUILDER,PROTOTYPE>,PROTOTYPE extends CorsConfig>  
extends Object
implements ConfigBuilderSupport.ConfiguredBuilder<BUILDER,PROTOTYPE> 
Fluent API builder base for 
CorsFeature.- 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionprotected static classGenerated implementation of the prototype, can be extended by descendant prototype implementations.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionList of sockets to register this feature on.addSockets(Set<String> sockets) List of sockets to register this feature on.config()If this instance was configured, this would be the config instance used.Deprecated.Update builder from configuration (node of this type).enabled()This feature can be disabled.enabled(boolean enabled) This feature can be disabled.from(CorsConfig prototype) Update this builder from an existing prototype instance.from(CorsConfig.BuilderBase<?, ?> builder) Update this builder from an existing prototype builder instance.name()Name of this instance.Name of this instance.protected voidHandles providers and decorators.sockets()List of sockets to register this feature on.List of sockets to register this feature on.toString()protected voidValidates required properties.doubleweight()Weight of the CORS feature.weight(double weight) Weight of the CORS feature.Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface io.helidon.builder.api.Prototype.BuilderbuildPrototype, self
- 
Constructor Details- 
BuilderBaseprotected BuilderBase()Protected to support extensibility.
 
- 
- 
Method Details- 
fromUpdate this builder from an existing prototype instance. This method disables automatic service discovery.- Parameters:
- prototype- existing prototype to update this builder from
- Returns:
- updated builder instance
 
- 
fromUpdate this builder from an existing prototype builder instance.- Parameters:
- builder- existing builder prototype to update this builder from
- Returns:
- updated builder instance
 
- 
configDeprecated.Update builder from configuration (node of this type). If a value is present in configuration, it would override currently configured values.- Specified by:
- configin interface- ConfigBuilderSupport.ConfiguredBuilder<BUILDER extends CorsConfig.BuilderBase<BUILDER,- PROTOTYPE>, - PROTOTYPE extends CorsConfig> 
- Parameters:
- config- configuration instance used to obtain values to update this builder
- Returns:
- updated builder instance
 
- 
configUpdate builder from configuration (node of this type). If a value is present in configuration, it would override currently configured values.- Specified by:
- configin interface- ConfigBuilderSupport.ConfiguredBuilder<BUILDER extends CorsConfig.BuilderBase<BUILDER,- PROTOTYPE>, - PROTOTYPE extends CorsConfig> 
- Parameters:
- config- configuration instance used to obtain values to update this builder
- Returns:
- updated builder instance
 
- 
weightWeight of the CORS feature. As it is used by other features, the default is quite high: 850.0.- Parameters:
- weight- weight of the feature
- Returns:
- updated builder instance
- See Also:
 
- 
socketsList of sockets to register this feature on. If empty, it would get registered on all sockets.- Parameters:
- sockets- socket names to register on, defaults to empty (all available sockets)
- Returns:
- updated builder instance
- See Also:
 
- 
addSocketsList of sockets to register this feature on. If empty, it would get registered on all sockets.- Parameters:
- sockets- socket names to register on, defaults to empty (all available sockets)
- Returns:
- updated builder instance
- See Also:
 
- 
addSocketList of sockets to register this feature on. If empty, it would get registered on all sockets.- Parameters:
- socket- socket names to register on, defaults to empty (all available sockets)
- Returns:
- updated builder instance
- See Also:
 
- 
nameName of this instance.- Parameters:
- name- instance name
- Returns:
- updated builder instance
- See Also:
 
- 
enabledThis feature can be disabled.- Parameters:
- enabled- whether the feature is enabled
- Returns:
- updated builder instance
- See Also:
 
- 
weightpublic double weight()Weight of the CORS feature. As it is used by other features, the default is quite high: 850.0.- Returns:
- the weight
 
- 
socketsList of sockets to register this feature on. If empty, it would get registered on all sockets.- Returns:
- the sockets
 
- 
nameName of this instance.- Returns:
- the name
 
- 
enabledThis feature can be disabled.- Returns:
- the enabled
 
- 
configIf this instance was configured, this would be the config instance used.- Returns:
- config node used to configure this builder, or empty if not configured
 
- 
toString
- 
preBuildPrototypeprotected void preBuildPrototype()Handles providers and decorators.
- 
validatePrototypeprotected void validatePrototype()Validates required properties.
 
- 
config(io.helidon.config.Config)