
com.sap.cloudfoundry.client.facade.domain.Lifecycle 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 com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.sap.cloudfoundry.client.facade.Nullable;
import org.cloudfoundry.AllowNulls;
import org.immutables.value.Value;
import java.util.Map;
@Value.Immutable
@JsonSerialize(as = ImmutableLifecycle.class)
@JsonDeserialize(as = ImmutableLifecycle.class)
public interface Lifecycle {
LifecycleType getType();
@Nullable
@AllowNulls
Map getData();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy