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: 2025.01.16.154437-45e6601
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 - 2025 Weber Informatics LLC | Privacy Policy