File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/main/java/com/github/dockerjava/api Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 4848import com .github .dockerjava .api .exception .DockerException ;
4949import com .github .dockerjava .api .model .AuthConfig ;
5050import com .github .dockerjava .api .model .Identifier ;
51+ import com .github .dockerjava .core .RemoteApiVersion ;
5152
5253// https://godoc.org/github.com/fsouza/go-dockerclient
5354public interface DockerClient extends Closeable {
@@ -129,7 +130,7 @@ public interface DockerClient extends Closeable {
129130 * @param containerId id of the container
130131 * @param resource path to container's resource
131132 * @return created command
132- * @since docker API version 1.20 and above.
133+ * @since {@link RemoteApiVersion#VERSION_1_20}
133134 */
134135 public CopyArchiveFromContainerCmd copyArchiveFromContainerCmd (@ Nonnull String containerId , @ Nonnull String resource );
135136
@@ -150,7 +151,7 @@ public interface DockerClient extends Closeable {
150151 *
151152 * @param containerId id of the container
152153 * @return created command
153- * @since docker API version 1.20 and above.
154+ * @since {@link RemoteApiVersion#VERSION_1_20}
154155 */
155156 public CopyArchiveToContainerCmd copyArchiveToContainerCmd (@ Nonnull String containerId );
156157
You can’t perform that action at this time.
0 commit comments