org.cloudfoundry.client.lib.domain.CloudDomain 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.immutables.value.Value;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
@Value.Immutable
@JsonSerialize(as = ImmutableCloudDomain.class)
@JsonDeserialize(as = ImmutableCloudDomain.class)
public abstract class CloudDomain extends CloudEntity implements Derivable {
@Override
public CloudDomain derive() {
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy