forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUpdateContainerResponse.java
More file actions
28 lines (23 loc) · 903 Bytes
/
Copy pathUpdateContainerResponse.java
File metadata and controls
28 lines (23 loc) · 903 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.github.dockerjava.api.model;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.github.dockerjava.core.RemoteApiVersion;
import javax.annotation.CheckForNull;
import java.util.List;
/**
* @author Kanstantsin Shautsou
* @see com.github.dockerjava.api.command.UpdateContainerCmd
* @see <a href="https://docs.docker.com/engine/reference/api/docker_remote_api_v1.22/">
* https://docs.docker.com/engine/reference/api/docker_remote_api_v1.22/</a>
* @since {@link RemoteApiVersion#VERSION_1_22}
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class UpdateContainerResponse extends ResponseItem {
private static final long serialVersionUID = 1L;
@JsonProperty("Warnings")
private List<String> warnings;
@CheckForNull
public List<String> getWarnings() {
return warnings;
}
}