public interface Customizer
Customizers run after all configurations have been applied to the fractions, including XML, YAML and system properties. They may then perform additional work to further customize the configuration.
The execution of customizers is currently divided into two phases,
org.wildfly.swarm.spi.runtime.annotations.Pre
and org.wildfly.swarm.spi.runtime.annotations.Post
.
All Pre
customizers are executed in arbitrary order, followed immediately
by all Post
customizers, also in arbitrary order.
Usually a Customizer
may javax.inject.Inject
various other
components, such as various Fraction
or SocketBindingGroup
instances.
Modifier and Type | Method and Description |
---|---|
void |
customize()
Perform customization.
|
Copyright © 2019 JBoss by Red Hat. All rights reserved.