com.github.dockerjava.api.model.SecretSpec Maven / Gradle / Ivy
package com.github.dockerjava.api.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import javax.annotation.CheckForNull;
import java.io.Serializable;
import java.util.Base64;
import java.util.Map;
/**
* @since {@link RemoteApiVersion#VERSION_1_25}
*/
@EqualsAndHashCode
@ToString
public class SecretSpec extends DockerObject implements Serializable {
public static final long serialVersionUID = 1L;
/**
* @since 1.25
*/
@JsonProperty("Name")
private String name;
/**
* @since 1.25
*/
@JsonProperty("Data")
private String data;
/**
* @since 1.25
*/
@JsonProperty("Labels")
private Map labels;
/**
* @see #name
*/
public String getName() {
return name;
}
/**
* @see #name
*/
public SecretSpec withName(String name) {
this.name = name;
return this;
}
/**
* @see #data
*/
public String getData() {
return data;
}
/**
* @see #data
*/
public SecretSpec withData(String data) {
this.data = Base64.getEncoder().encodeToString(data.getBytes());
return this;
}
/**
* @see #labels
*/
public SecretSpec withLabels(Map labels) {
this.labels = labels;
return this;
}
/**
* @see #labels
*/
@CheckForNull
public Map getLabels() {
return labels;
}
}