
com.sap.cloudfoundry.client.facade.domain.CloudMetadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudfoundry-client-facade Show documentation
Show all versions of cloudfoundry-client-facade Show documentation
A facade of the official Cloud Foundry Java client
package com.sap.cloudfoundry.client.facade.domain;
import java.time.LocalDateTime;
import java.util.UUID;
import org.immutables.value.Value;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.sap.cloudfoundry.client.facade.Nullable;
@Value.Immutable
@JsonSerialize(as = ImmutableCloudMetadata.class)
@JsonDeserialize(as = ImmutableCloudMetadata.class)
public interface CloudMetadata {
@Nullable
@Value.Parameter
UUID getGuid();
@Nullable
LocalDateTime getCreatedAt();
@Nullable
LocalDateTime getUpdatedAt();
@Nullable
String getUrl();
static CloudMetadata defaultMetadata() {
return ImmutableCloudMetadata.builder()
.build();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy