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

io.pivotal.services.plugin.CfServiceDetail 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.List;

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

@Value.Immutable(copy = true)
public abstract class CfServiceDetail {
    public abstract String name();
    public abstract String plan();
    public abstract String instanceName();
    
    @Nullable
    public abstract Integer completionTimeout();
    @Nullable
    public abstract List tags();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy