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

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

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 = ImmutableDockerCredentials.class)
@JsonDeserialize(as = ImmutableDockerCredentials.class)
public interface DockerCredentials {

    String getUsername();

    String getPassword();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy