FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

Add support for CgroupVersion and CgroupDriver by LarsSven · Pull Request #2360 · docker-java/docker-java · GitHub

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension .java  (1) All 1 file type selected
Viewed files
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Unified
Split
Hide whitespace
Diff view
Unified
Split
Hide whitespace
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,12 @@ public class Info extends DockerObject implements Serializable {
@JsonProperty("LoggingDriver")
private String loggingDriver;

@JsonProperty("CgroupDriver")
private String cGroupDriver;

@JsonProperty("CgroupVersion")
private String cGroupVersion;

/**
* @since {@link com.github.dockerjava.core.RemoteApiVersion#VERSION_1_20}
*/
Expand Down Expand Up @@ -486,6 +492,22 @@ public String getLoggingDriver() {
return loggingDriver;
}

/**
* @see #cGroupDriver
*/
@CheckForNull
public String getCGroupDriver() {
return cGroupDriver;
}

/**
* @see #cGroupVersion
*/
@CheckForNull
public String getCGroupVersion() {
return cGroupVersion;
}

/**
* @see #loggingDriver
*/
Expand All @@ -494,6 +516,22 @@ public Info withLoggingDriver(String loggingDriver) {
return this;
}

/**
* @see #cGroupDriver
*/
public Info withCGroupDriver(String cGroupDriver) {
this.cGroupDriver = cGroupDriver;
return this;
}

/**
* @see #cGroupVersion
*/
public Info withCGroupVersion(String cGroupVersion) {
this.cGroupVersion = cGroupVersion;
return this;
}

/**
* @see #experimentalBuild
*/
Expand Down

Back | FazBrowse Home | New Git URL