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

io.pivotal.services.plugin.CfUserProvidedServiceDetail Maven / Gradle / Ivy

There is a newer version: 2.3.0-rc.6
Show newest version
package io.pivotal.services.plugin;

import org.cloudfoundry.Nullable;
import org.immutables.value.Value;

import java.util.Map;

/**
 * Details of a user provided service instance
 *
 * @author Biju Kunjummen
 */

@Value.Immutable(copy = true)
public abstract class CfUserProvidedServiceDetail {
    public abstract String instanceName();
    public abstract Map credentials();

    @Nullable
    public abstract Integer completionTimeout();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy