List of usage examples for java.util.function Supplier interface-usage
From source file com.github.akiraly.db4j.JdbcTemplateAwareBuilder.java
@Nonnull public abstract class JdbcTemplateAwareBuilder<T, B extends JdbcTemplateAwareBuilder<T, B>> implements Supplier<T> { private JdbcTemplate jdbcTemplate; protected JdbcTemplateAwareBuilder() { }
From source file de.micromata.genome.util.runtime.InitWithCopyFromCpLocalSettingsClassLoader.java
/**
* It is a wrapper for a localSettings loader, which copies a local Settings from from classpath.
*
* @author Roger Rene Kommer (r.kommer.extern@micromata.de)
*
*/
From source file com.fitbur.docker.client.internal.CamelMapperSupplier.java
/** * * @author Sharmarke Aden */ public class CamelMapperSupplier implements Supplier<ObjectMapper> {
From source file org.codice.ddf.catalog.ui.query.monitor.impl.quartz.CronString.java
/** * Supply a Quartz {@code Trigger} that is configured with a CRON string. */ public class CronString implements Supplier<Trigger> { private final String cronString;
From source file org.springframework.cloud.sleuth.instrument.reactor.SpanSubscriptionProvider.java
/**
* Supplier to lazily start a {@link SpanSubscription}.
*
* @param <T> type of returned subscription
* @author Marcin Grzejszczak
*/
From source file com.fitbur.docker.client.internal.PascalMapperSupplier.java
/** * * @author Sharmarke Aden */ public class PascalMapperSupplier implements Supplier<ObjectMapper> {
From source file org.springframework.boot.web.client.ClientHttpRequestFactorySupplier.java
/**
* A supplier for {@link ClientHttpRequestFactory} that detects the preferred candidate
* based on the available implementations on the classpath.
*
* @author Stephane Nicoll
* @since 2.1.0
From source file se.curity.examples.http.UnsafeHttpClientSupplier.java
/**
* WARNING: This httpClient supplier is NOT meant to be used in production environments.
* <p>
* It disables SSL Certificate checks, making HTTPS communication completely unsafe.
* <p>
* Delete the file src/main/resources/META-INF/OAuthFilter.properties or set
From source file com.bekioui.jaxrs.server.swagger.SwaggerSupplier.java
@Component public final class SwaggerSupplier implements Supplier<Swagger> { @Value("${jaxrs.server.swagger.host:localhost:8080}") private String host;
From source file org.apache.tinkerpop.gremlin.process.computer.util.ConfigurationTraversal.java
/** * @author Marko A. Rodriguez (http://markorodriguez.com) * @deprecated As of release 3.2.0, replaced by {@link org.apache.tinkerpop.gremlin.process.traversal.util.PureTraversal}. */ @Deprecated public final class ConfigurationTraversal<S, E> implements Supplier<Traversal.Admin<S, E>> {