Example usage for org.springframework.core.env EnumerablePropertySource subclass-usage

List of usage examples for org.springframework.core.env EnumerablePropertySource subclass-usage

Introduction

In this page you can find the example usage for org.springframework.core.env EnumerablePropertySource subclass-usage.

Usage

From source file com.kixeye.chassis.bootstrap.spring.ArgumentsPropertySource.java

/**
 * Exposes {@link Arguments} as a source of properties to Spring
 *
 * @author dturner@kixeye.com
 */
public class ArgumentsPropertySource extends EnumerablePropertySource<Arguments> {

From source file com.kixeye.chassis.bootstrap.spring.ArchaiusSpringPropertySource.java

/**
 * A spring property source that uses Archaius.
 * 
 * @author ebahtijaragic
 */
public class ArchaiusSpringPropertySource extends EnumerablePropertySource<Map<String, Object>> {

From source file ch.sdi.core.impl.data.Person.java

/**
 * An abstract data holder class for a person.<p>
 *
 * @version 1.0 (01.11.2014)
 * @author  Heri
 */

From source file org.craftercms.commons.spring.ApacheCommonsConfiguration2PropertySource.java

/**
 * Implementation of {@link EnumerablePropertySource} where a source is an Apache Commons Configuration 2 {@link Configuration}.
 *
 * @author avasquez
 */
public class ApacheCommonsConfiguration2PropertySource extends EnumerablePropertySource<Configuration> {

From source file org.springframework.cloud.etcd.config.EtcdPropertySource.java

/**
 * @author Luca Burgazzoli
 * @author Spencer Gibb
 */
public class EtcdPropertySource extends EnumerablePropertySource<EtcdClient> {

From source file org.springframework.vault.core.env.LeaseAwareVaultPropertySource.java

/**
 * {@link PropertySource} that requests renewable secrets from
 * {@link SecretLeaseContainer}. Leases are renewed or rotated, depeding on
 * {@link RequestedSecret#getMode()}. Contents of this {@link PropertySource} is updated
 * from background threads and the content is mutable. Expiration and revocation removes
 * properties.

From source file org.springframework.vault.core.env.VaultPropertySource.java

/**
 * {@link PropertySource} that reads keys and values from a {@link VaultTemplate} and
 * {@code path}. Transforms properties after retrieving these from Vault using
 * {@link PropertyTransformer}.
 *
 * @author Mark Paluch