Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 4387250

Browse filesBrowse files
authored
Add security options to Info (docker-java#1515)
1 parent c60bcb2 commit 4387250
Copy full SHA for 4387250

1 file changed

+7Lines changed: 7 additions & 0 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
  • docker-java-api/src/main/java/com/github/dockerjava/api/model
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎docker-java-api/src/main/java/com/github/dockerjava/api/model/Info.java‎

Copy file name to clipboardExpand all lines: docker-java-api/src/main/java/com/github/dockerjava/api/model/Info.java
+7Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,9 @@ public class Info implements Serializable {
232232
@JsonProperty("Isolation")
233233
private String isolation;
234234

235+
@JsonProperty("SecurityOptions")
236+
private List<String> securityOptions;
237+
235238
/**
236239
* @see #architecture
237240
*/
@@ -1063,4 +1066,8 @@ public Info withIsolation(String isolation) {
10631066
this.isolation = isolation;
10641067
return this;
10651068
}
1069+
1070+
public List<String> getSecurityOptions() {
1071+
return securityOptions;
1072+
}
10661073
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.