All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.guicedee.guicedpersistence.readers.systemproperties.SystemEnvironmentModuleExclusions Maven / Gradle / Ivy

Go to download

Reads ${} properties from the System Environment Variables and replaces the values in the persistence properties.

There is a newer version: 62
Show newest version
package com.guicedee.guicedpersistence.readers.systemproperties;

import com.guicedee.guicedinjection.interfaces.IGuiceScanModuleExclusions;

import javax.validation.constraints.NotNull;
import java.util.HashSet;
import java.util.Set;

public class SystemEnvironmentModuleExclusions
		implements IGuiceScanModuleExclusions
{
	@Override
	public @NotNull Set excludeModules()
	{
		Set strings = new HashSet<>();
		strings.add("com.guicedee.guicedpersistence.readers.systemproperties");
		return strings;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy