org.gradle.api.provider.ProviderFactory Maven / Gradle / Ivy
Show all versions of gradle-api Show documentation
/*
* Copyright 2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.api.provider;
import org.gradle.api.Action;
import org.gradle.api.Incubating;
import org.gradle.api.NonExtensible;
import org.gradle.api.credentials.AwsCredentials;
import org.gradle.api.credentials.Credentials;
import org.gradle.api.credentials.PasswordCredentials;
import org.gradle.api.file.FileContents;
import org.gradle.api.file.RegularFile;
import org.gradle.api.initialization.Settings;
import org.gradle.internal.service.scopes.Scope;
import org.gradle.internal.service.scopes.ServiceScope;
import org.gradle.process.ExecOutput;
import org.gradle.process.ExecSpec;
import org.gradle.process.JavaExecSpec;
import java.util.Map;
import java.util.concurrent.Callable;
import java.util.function.BiFunction;
/**
* A factory for creating instances of {@link Provider}.
*
*
* An instance of the factory can be injected into a task, plugin or other object by annotating a public constructor or property getter method with {@code javax.inject.Inject}.
* It is also available via {@link org.gradle.api.Project#getProviders()} and {@link Settings#getProviders()}.
*
* @since 4.0
*/
@NonExtensible
@ServiceScope(Scope.Build.class)
public interface ProviderFactory {
/**
* Creates a {@link Provider} whose value is calculated using the given {@link Callable}.
*
*
The provider is live and will call the {@link Callable} each time its value is queried. The {@link Callable} may return {@code null}, in which case the provider is considered to have no value.
*
* @param value The {@code java.util.concurrent.Callable} use to calculate the value.
* @return The provider. Never returns null.
*/
Provider provider(Callable extends @org.jetbrains.annotations.Nullable T> value);
/**
* Creates a {@link Provider} whose value is fetched from the environment variable with the given name.
*
* @param variableName The name of the environment variable.
* @return The provider. Never returns null.
* @since 6.1
*/
Provider environmentVariable(String variableName);
/**
* Creates a {@link Provider} whose value is fetched from the environment variable with the given name.
*
* @param variableName The provider for the name of the environment variable; when the given provider has no value, the returned provider has no value.
* @return The provider. Never returns null.
* @since 6.1
*/
Provider environmentVariable(Provider variableName);
/**
* Creates a {@link Provider} whose value is a name-to-value map of the environment variables with the names starting with the given prefix.
* The prefix comparison is case-sensitive. The returned map is immutable.
*
* @param variableNamePrefix The prefix of the environment variable names
* @return The provider. Never returns null.
* @since 7.5
*/
@Incubating
Provider