org.cloudfoundry.client.lib.domain.CloudServicePlan Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudfoundry-client-lib Show documentation
Show all versions of cloudfoundry-client-lib Show documentation
A Cloud Foundry client library for Java
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 = ImmutableCloudServicePlan.class)
@JsonDeserialize(as = ImmutableCloudServicePlan.class)
public abstract class CloudServicePlan extends CloudEntity implements Derivable {
@Nullable
public abstract String getDescription();
@Nullable
public abstract String getExtra();
@Nullable
public abstract String getUniqueId();
@Nullable
public abstract Boolean isFree();
@Nullable
public abstract Boolean isPublic();
@Override
public CloudServicePlan derive() {
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy