Class EarndotcomFeeClientAutoConfiguration
- java.lang.Object
-
- org.tbk.bitcoin.tool.fee.earndotcom.config.EarndotcomFeeClientAutoConfiguration
-
@Configuration(proxyBeanMethods=false) @EnableConfigurationProperties(EarndotcomFeeClientAutoConfigProperties.class) @ConditionalOnClass({org.tbk.bitcoin.tool.fee.earndotcom.client.EarndotcomApiClient.class,org.tbk.bitcoin.tool.fee.earndotcom.provider.EarndotcomFeeProvider.class,org.tbk.bitcoin.tool.fee.earndotcom.provider.FeeSelectionStrategy.class}) @ConditionalOnProperty(name={"org.tbk.bitcoin.tool.fee.enabled","org.tbk.bitcoin.tool.fee.earndotcom.enabled"}, havingValue="true", matchIfMissing=true) public class EarndotcomFeeClientAutoConfiguration extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description EarndotcomFeeClientAutoConfiguration(EarndotcomFeeClientAutoConfigProperties properties)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.tbk.bitcoin.tool.fee.earndotcom.client.EarndotcomApiClientearndotcomApiClient()org.tbk.bitcoin.tool.fee.earndotcom.provider.EarndotcomFeeProviderearndotcomFeeProvider(org.tbk.bitcoin.tool.fee.earndotcom.client.EarndotcomApiClient earndotcomApiClient, org.tbk.bitcoin.tool.fee.earndotcom.provider.FeeSelectionStrategy earndotcomFeeSelectionStrategy)org.tbk.bitcoin.tool.fee.earndotcom.provider.FeeSelectionStrategyearndotcomFeeSelectionStrategy()
-
-
-
Constructor Detail
-
EarndotcomFeeClientAutoConfiguration
public EarndotcomFeeClientAutoConfiguration(EarndotcomFeeClientAutoConfigProperties properties)
-
-
Method Detail
-
earndotcomApiClient
@Bean @ConditionalOnMissingBean(org.tbk.bitcoin.tool.fee.earndotcom.client.EarndotcomApiClient.class) public org.tbk.bitcoin.tool.fee.earndotcom.client.EarndotcomApiClient earndotcomApiClient()
-
earndotcomFeeSelectionStrategy
@Bean @ConditionalOnMissingBean(org.tbk.bitcoin.tool.fee.earndotcom.provider.FeeSelectionStrategy.class) public org.tbk.bitcoin.tool.fee.earndotcom.provider.FeeSelectionStrategy earndotcomFeeSelectionStrategy()
-
earndotcomFeeProvider
@Bean @ConditionalOnMissingBean(org.tbk.bitcoin.tool.fee.earndotcom.provider.EarndotcomFeeProvider.class) public org.tbk.bitcoin.tool.fee.earndotcom.provider.EarndotcomFeeProvider earndotcomFeeProvider(org.tbk.bitcoin.tool.fee.earndotcom.client.EarndotcomApiClient earndotcomApiClient, org.tbk.bitcoin.tool.fee.earndotcom.provider.FeeSelectionStrategy earndotcomFeeSelectionStrategy)
-
-