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

main.wisp.deployment.EnvironmentVariableDeploymentLocation.kt Maven / Gradle / Ivy

There is a newer version: 2024.11.22.172133-fe9b482
Show newest version
package wisp.deployment

/**
 * Provides a deployment location id from the environment variable value.
 */
class EnvironmentVariableDeploymentLocation @JvmOverloads constructor(
    private val environmentVariableName: String,
    private val environmentVariableLoader: EnvironmentVariableLoader = EnvironmentVariableLoader.real
) : DeploymentLocation {

    override val id: String
        get() = environmentVariableLoader.getEnvironmentVariable(environmentVariableName)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy