Class ResteasyReactiveFeatureScanner
- java.lang.Object
-
- org.jboss.resteasy.reactive.server.processor.scanning.ResteasyReactiveFeatureScanner
-
public class ResteasyReactiveFeatureScanner extends Object
Class that is responsible for scanning for features and dynamic features
-
-
Constructor Summary
Constructors Constructor Description ResteasyReactiveFeatureScanner()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DynamicFeaturescreateDynamicFeatures(org.jboss.jandex.IndexView indexView, ApplicationScanningResult result)Creates a fully populated resource dynamic features instance, that are created via reflection.static DynamicFeaturescreateDynamicFeatures(org.jboss.jandex.IndexView indexView, ApplicationScanningResult result, Function<String,org.jboss.resteasy.reactive.spi.BeanFactory<?>> factoryCreator)Creates a fully populated resource features instance, that are created via the provided factory creatorstatic FeaturescreateFeatures(org.jboss.jandex.IndexView indexView, ApplicationScanningResult result)Creates a fully populated resource features instance, that are created via reflection.static FeaturescreateFeatures(org.jboss.jandex.IndexView indexView, ApplicationScanningResult result, Function<String,org.jboss.resteasy.reactive.spi.BeanFactory<?>> factoryCreator)Creates a fully populated resource features instance, that are created via the provided factory creatorstatic Set<String>scanForDynamicFeatures(org.jboss.jandex.IndexView index, ApplicationScanningResult applicationScanningResult)static Set<String>scanForFeatures(org.jboss.jandex.IndexView index, ApplicationScanningResult applicationScanningResult)
-
-
-
Method Detail
-
createFeatures
public static Features createFeatures(org.jboss.jandex.IndexView indexView, ApplicationScanningResult result)
Creates a fully populated resource features instance, that are created via reflection.
-
createFeatures
public static Features createFeatures(org.jboss.jandex.IndexView indexView, ApplicationScanningResult result, Function<String,org.jboss.resteasy.reactive.spi.BeanFactory<?>> factoryCreator)
Creates a fully populated resource features instance, that are created via the provided factory creator
-
createDynamicFeatures
public static DynamicFeatures createDynamicFeatures(org.jboss.jandex.IndexView indexView, ApplicationScanningResult result)
Creates a fully populated resource dynamic features instance, that are created via reflection.
-
createDynamicFeatures
public static DynamicFeatures createDynamicFeatures(org.jboss.jandex.IndexView indexView, ApplicationScanningResult result, Function<String,org.jboss.resteasy.reactive.spi.BeanFactory<?>> factoryCreator)
Creates a fully populated resource features instance, that are created via the provided factory creator
-
scanForFeatures
public static Set<String> scanForFeatures(org.jboss.jandex.IndexView index, ApplicationScanningResult applicationScanningResult)
-
scanForDynamicFeatures
public static Set<String> scanForDynamicFeatures(org.jboss.jandex.IndexView index, ApplicationScanningResult applicationScanningResult)
-
-