File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed
docker-java-api/src/main/java/com/github/dockerjava/api/model Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -1108,14 +1108,33 @@ public Info withIsolation(String isolation) {
1108
1108
return this ;
1109
1109
}
1110
1110
1111
+ /**
1112
+ * @see #securityOptions
1113
+ */
1111
1114
public List <String > getSecurityOptions () {
1112
1115
return securityOptions ;
1113
1116
}
1114
1117
1118
+ /**
1119
+ * @see #securityOptions
1120
+ */
1121
+ public Info withSecurityOptions (List <String > securityOptions ) {
1122
+ this .securityOptions = securityOptions ;
1123
+ return this ;
1124
+ }
1125
+
1115
1126
/**
1116
1127
* @see #runtimes
1117
1128
*/
1118
1129
public Map <String , RuntimeInfo > getRuntimes () {
1119
1130
return runtimes ;
1120
1131
}
1132
+
1133
+ /**
1134
+ * @see #runtimes
1135
+ */
1136
+ public Info withRuntimes (Map <String , RuntimeInfo > runtimes ) {
1137
+ this .runtimes = runtimes ;
1138
+ return this ;
1139
+ }
1121
1140
}
You can’t perform that action at this time.
0 commit comments