Uses of Interface
org.togglz.core.manager.FeatureManager
-
Packages that use FeatureManager Package Description org.togglz.core.bootstrap org.togglz.core.context org.togglz.core.manager org.togglz.core.proxy org.togglz.core.spi org.togglz.core.util -
-
Uses of FeatureManager in org.togglz.core.bootstrap
Methods in org.togglz.core.bootstrap that return FeatureManager Modifier and Type Method Description FeatureManagerFeatureManagerBootstrapper. createFeatureManager(Object context)Tries to automatically build and configure aFeatureManagerlike described above.FeatureManagerTogglzBootstrap. createFeatureManager()Create theFeatureManagerfor the application. -
Uses of FeatureManager in org.togglz.core.context
Methods in org.togglz.core.context that return FeatureManager Modifier and Type Method Description FeatureManagerBeanFinderFeatureManagerProvider. getFeatureManager()FeatureManagerContextClassLoaderFeatureManagerProvider. getFeatureManager()static FeatureManagerFeatureContext. getFeatureManager()Returns theFeatureManagerfor the current application (context class loader).FeatureManagerJNDIFeatureManagerProvider. getFeatureManager()FeatureManagerStaticFeatureManagerProvider. getFeatureManager()FeatureManagerThreadLocalFeatureManagerProvider. getFeatureManager()static FeatureManagerFeatureContext. getFeatureManagerOrNull()Returns theFeatureManagerfor the current application (context class loader).Methods in org.togglz.core.context with parameters of type FeatureManager Modifier and Type Method Description static voidContextClassLoaderFeatureManagerProvider. bind(FeatureManager featureManager)Binds theFeatureManagerto the current context class loader .static voidThreadLocalFeatureManagerProvider. bind(FeatureManager featureManager)Store the suppliedFeatureManagerin the thread context.static voidStaticFeatureManagerProvider. setFeatureManager(FeatureManager featureManager)Sets theFeatureManagerthat the provider should return for calls toStaticFeatureManagerProvider.getFeatureManager(). -
Uses of FeatureManager in org.togglz.core.manager
Classes in org.togglz.core.manager that implement FeatureManager Modifier and Type Class Description classDefaultFeatureManagerDefault implementation ofFeatureManagerclassLazyResolvingFeatureManagerA feature manager that delegates all calls to the manager obtained lazily viaFeatureContext.getFeatureManager().Methods in org.togglz.core.manager that return FeatureManager Modifier and Type Method Description FeatureManagerFeatureManagerBuilder. build()Create theFeatureManagerusing the current configuration of the builder -
Uses of FeatureManager in org.togglz.core.proxy
Methods in org.togglz.core.proxy with parameters of type FeatureManager Modifier and Type Method Description static <T> TByteBuddyProxyFactory. passiveProxyFor(Feature feature, Class<? super T> interfaceClass, T active, T inactive, FeatureManager featureManager)Generate a passiveFeatureproxy.static <T> TByteBuddyProxyFactory. proxyFor(Feature feature, Class<? super T> interfaceClass, T active, T inactive, FeatureManager featureManager)Generate an activeFeatureproxy.Constructors in org.togglz.core.proxy with parameters of type FeatureManager Constructor Description FeatureProxyInvocationHandler(Feature feature, Object active, Object inactive, FeatureManager featureManager)TogglzSwitchable(FeatureManager featureManager, Feature feature, T active, T inactive) -
Uses of FeatureManager in org.togglz.core.spi
Methods in org.togglz.core.spi that return FeatureManager Modifier and Type Method Description FeatureManagerFeatureManagerProvider. getFeatureManager()Methods in org.togglz.core.spi with parameters of type FeatureManager Modifier and Type Method Description voidFeatureManagerListener. start(FeatureManager featureManager)Called after theFeatureManagerfor the application has been created.voidFeatureManagerListener. stop(FeatureManager featureManager)Called before theFeatureManagerof the application is destroyed. -
Uses of FeatureManager in org.togglz.core.util
Constructors in org.togglz.core.util with parameters of type FeatureManager Constructor Description FeatureMap(FeatureManager manager)Constructor that allows to manually set the feature manager to use.
-