Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ public interface AuthCmd extends SyncDockerCmd<AuthResponse> {
public static interface Exec extends DockerCmdSyncExec<AuthCmd, AuthResponse> {
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -124,4 +124,4 @@ public interface BuildImageCmd extends AsyncDockerCmd<BuildImageCmd, BuildRespon
public static interface Exec extends DockerCmdAsyncExec<BuildImageCmd, BuildResponseItem> {
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -123,4 +123,4 @@ public interface CommitCmd extends SyncDockerCmd<String> {

public static interface Exec extends DockerCmdSyncExec<CommitCmd, String> {
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ public interface ContainerDiffCmd extends SyncDockerCmd<List<ChangeLog>> {
public static interface Exec extends DockerCmdSyncExec<ContainerDiffCmd, List<ChangeLog>> {
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ public interface CopyFileFromContainerCmd extends SyncDockerCmd<InputStream> {

public static interface Exec extends DockerCmdSyncExec<CopyFileFromContainerCmd, InputStream> {
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ public interface CreateImageCmd extends SyncDockerCmd<CreateImageResponse> {
public static interface Exec extends DockerCmdSyncExec<CreateImageCmd, CreateImageResponse> {
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ public interface DockerCmd<RES_T> extends Closeable {
@Override
public void close();

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,4 @@ public interface DockerCmdExecFactory extends Closeable {

@Override
public void close() throws IOException;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ public interface InfoCmd extends SyncDockerCmd<Info> {
public static interface Exec extends DockerCmdSyncExec<InfoCmd, Info> {
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ public interface InspectContainerCmd extends SyncDockerCmd<InspectContainerRespo

public static interface Exec extends DockerCmdSyncExec<InspectContainerCmd, InspectContainerResponse> {
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ public interface InspectImageCmd extends SyncDockerCmd<InspectImageResponse> {
public static interface Exec extends DockerCmdSyncExec<InspectImageCmd, InspectImageResponse> {
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ public interface KillContainerCmd extends SyncDockerCmd<Void> {
public static interface Exec extends DockerCmdSyncExec<KillContainerCmd, Void> {
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ public interface ListContainersCmd extends SyncDockerCmd<List<Container>> {
public static interface Exec extends DockerCmdSyncExec<ListContainersCmd, List<Container>> {
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ public interface ListImagesCmd extends SyncDockerCmd<List<Image>> {
public static interface Exec extends DockerCmdSyncExec<ListImagesCmd, List<Image>> {
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ public interface PauseContainerCmd extends SyncDockerCmd<Void> {
public static interface Exec extends DockerCmdSyncExec<PauseContainerCmd, Void> {
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ public interface PingCmd extends SyncDockerCmd<Void> {
public static interface Exec extends DockerCmdSyncExec<PingCmd, Void> {
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ public interface PullImageCmd extends AsyncDockerCmd<PullImageCmd, PullResponseI

public static interface Exec extends DockerCmdAsyncExec<PullImageCmd, PullResponseItem> {
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ public interface PushImageCmd extends AsyncDockerCmd<PushImageCmd, PushResponseI

public static interface Exec extends DockerCmdAsyncExec<PushImageCmd, PushResponseItem> {
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ public interface RemoveContainerCmd extends SyncDockerCmd<Void> {
public static interface Exec extends DockerCmdSyncExec<RemoveContainerCmd, Void> {
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ public interface RemoveImageCmd extends SyncDockerCmd<Void> {
public static interface Exec extends DockerCmdSyncExec<RemoveImageCmd, Void> {
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ public interface RestartContainerCmd extends SyncDockerCmd<Void> {
public static interface Exec extends DockerCmdSyncExec<RestartContainerCmd, Void> {
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ public interface SearchImagesCmd extends SyncDockerCmd<List<SearchItem>> {
public static interface Exec extends DockerCmdSyncExec<SearchImagesCmd, List<SearchItem>> {
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ public interface StopContainerCmd extends SyncDockerCmd<Void> {
public static interface Exec extends DockerCmdSyncExec<StopContainerCmd, Void> {
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ public interface SyncDockerCmd<RES_T> extends DockerCmd<RES_T> {

public RES_T exec();

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ public interface TagImageCmd extends SyncDockerCmd<Void> {
public static interface Exec extends DockerCmdSyncExec<TagImageCmd, Void> {
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ public interface TopContainerCmd extends SyncDockerCmd<TopContainerResponse> {
public static interface Exec extends DockerCmdSyncExec<TopContainerCmd, TopContainerResponse> {
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ public interface UnpauseContainerCmd extends SyncDockerCmd<Void> {
public static interface Exec extends DockerCmdSyncExec<UnpauseContainerCmd, Void> {
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ public interface VersionCmd extends SyncDockerCmd<Version> {
public static interface Exec extends DockerCmdSyncExec<VersionCmd, Version> {
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ private T withOptionalAuthConfig(AuthConfig authConfig) {
return (T) this;
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ protected InputStream execute(CopyFileFromContainerCmd command) {
return new WrappedResponseInputStream(response);
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -337,4 +337,4 @@ public void write(final int i) throws IOException {
inner.write(i);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

public interface ChannelProvider {
Channel getChannel();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,4 @@ private void poll() {
}
}
}
}
}
2 changes: 1 addition & 1 deletion src/main/resources/docker.io.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ docker.io.url=https://localhost:2376
docker.io.dockerCertPath=${user.home}/.docker
docker.io.dockerCfgPath=${user.home}/.dockercfg
docker.io.username=${user.name}
docker.io.serverAddress=https://index.docker.io/v1/
docker.io.serverAddress=https://index.docker.io/v1/
6 changes: 6 additions & 0 deletions src/test/resources/checkstyle/checkstyle-config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@
<property name="basedir" value="${basedir}"/>
-->

<!-- Checks whether files end with a new line. -->
<!-- See http://checkstyle.sf.net/config_misc.html#NewlineAtEndOfFile -->
<module name="NewlineAtEndOfFile">
<property name="lineSeparator" value="lf"/>
</module>

<module name="TreeWalker">
<module name="UnusedImports">
<property name="processJavadoc" value="true"/>
Expand Down