Class ManagedInstaller
- java.lang.Object
-
- ru.vyarus.dropwizard.guice.module.installer.feature.ManagedInstaller
-
- All Implemented Interfaces:
FeatureInstaller,InstanceInstaller<io.dropwizard.lifecycle.Managed>,Ordered
public class ManagedInstaller extends java.lang.Object implements FeatureInstaller, InstanceInstaller<io.dropwizard.lifecycle.Managed>, Ordered
Managed objects installer. Looks for classes implementingio.dropwizard.lifecycle.Managedand register them in environment.- Since:
- 01.09.2014
-
-
Constructor Summary
Constructors Constructor Description ManagedInstaller()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<java.lang.String>getRecognizableSigns()Method used by extensions help report (GuiceBundle.Builder.printExtensionsHelp()) to show what signs this exact installer recognize so user could better understand extensions support specifics.voidinstall(io.dropwizard.core.setup.Environment environment, io.dropwizard.lifecycle.Managed instance)UseFeatureUtils.getInstanceClass(instance)to overcome proxies and get correct type.booleanmatches(java.lang.Class<?> type)NOTE: consider usingru.vyarus.dropwizard.guice.module.installer.util.FeatureUtilsto simplify checks (for example, types most likely must be checks to be not abstract).voidreport()Called to log registered endpoints in dropwizard log fashion.
-
-
-
Method Detail
-
matches
public boolean matches(java.lang.Class<?> type)
Description copied from interface:FeatureInstallerNOTE: consider usingru.vyarus.dropwizard.guice.module.installer.util.FeatureUtilsto simplify checks (for example, types most likely must be checks to be not abstract).When type accepted by any extension it's registered in guice module.
- Specified by:
matchesin interfaceFeatureInstaller- Parameters:
type- type to check- Returns:
- true if extension recognized, false otherwise
-
install
public void install(io.dropwizard.core.setup.Environment environment, io.dropwizard.lifecycle.Managed instance)Description copied from interface:InstanceInstallerUseFeatureUtils.getInstanceClass(instance)to overcome proxies and get correct type.Full
Injectorcould be obtained withInjectorLookup.getInjector(Environment).Shared state could be obtained with
SharedConfigurationState.get(Environment)- Specified by:
installin interfaceInstanceInstaller<io.dropwizard.lifecycle.Managed>- Parameters:
environment- environment objectinstance- extension instance
-
report
public void report()
Description copied from interface:FeatureInstallerCalled to log registered endpoints in dropwizard log fashion. It's important to naturally show all dynamically resolved classes to easily catch errors. UseReporterto simplify reporting.Method may do nothing if reporting not required
- Specified by:
reportin interfaceFeatureInstaller
-
getRecognizableSigns
public java.util.List<java.lang.String> getRecognizableSigns()
Description copied from interface:FeatureInstallerMethod used by extensions help report (GuiceBundle.Builder.printExtensionsHelp()) to show what signs this exact installer recognize so user could better understand extensions support specifics.- Specified by:
getRecognizableSignsin interfaceFeatureInstaller- Returns:
- list of extension signs installer recognize
-
-