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

org.cloudfoundry.client.lib.domain.CloudInfo Maven / Gradle / Ivy

The newest version!
package org.cloudfoundry.client.lib.domain;

import org.cloudfoundry.client.lib.domain.annotation.Nullable;
import org.immutables.value.Value;

import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;

@Value.Immutable
@JsonSerialize(as = ImmutableCloudInfo.class)
@JsonDeserialize(as = ImmutableCloudInfo.class)
public interface CloudInfo {

    @Nullable
    String getAuthorizationEndpoint();

    @Nullable
    String getLoggingEndpoint();

    @Nullable
    String getBuild();

    @Nullable
    String getDescription();

    @Nullable
    String getName();

    @Nullable
    String getUser();

    @Nullable
    String getSupport();

    @Nullable
    String getVersion();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy