|
26 | 26 | public interface AttachContainerCmd extends AsyncDockerCmd<AttachContainerCmd, Frame> { |
27 | 27 |
|
28 | 28 | @CheckForNull |
29 | | - public String getContainerId(); |
| 29 | + String getContainerId(); |
30 | 30 |
|
31 | 31 | @CheckForNull |
32 | | - public Boolean hasLogsEnabled(); |
| 32 | + Boolean hasLogsEnabled(); |
33 | 33 |
|
34 | 34 | @CheckForNull |
35 | | - public Boolean hasFollowStreamEnabled(); |
| 35 | + Boolean hasFollowStreamEnabled(); |
36 | 36 |
|
37 | 37 | @CheckForNull |
38 | | - public Boolean hasTimestampsEnabled(); |
| 38 | + Boolean hasTimestampsEnabled(); |
39 | 39 |
|
40 | 40 | @CheckForNull |
41 | | - public Boolean hasStdoutEnabled(); |
| 41 | + Boolean hasStdoutEnabled(); |
42 | 42 |
|
43 | 43 | @CheckForNull |
44 | | - public Boolean hasStderrEnabled(); |
| 44 | + Boolean hasStderrEnabled(); |
45 | 45 |
|
46 | 46 | @CheckForNull |
47 | | - public InputStream getStdin(); |
| 47 | + InputStream getStdin(); |
48 | 48 |
|
49 | | - public AttachContainerCmd withContainerId(@Nonnull String containerId); |
| 49 | + AttachContainerCmd withContainerId(@Nonnull String containerId); |
50 | 50 |
|
51 | 51 | /** |
52 | 52 | * Following the stream means the resulting {@link InputStream} returned by {@link #exec()} reads infinitely. So a |
53 | 53 | * {@link InputStream#read()} MAY BLOCK FOREVER as long as no data is streamed from the docker host to |
54 | 54 | * {@link DockerClient}! |
55 | 55 | */ |
56 | | - public AttachContainerCmd withFollowStream(Boolean followStream); |
| 56 | + AttachContainerCmd withFollowStream(Boolean followStream); |
57 | 57 |
|
58 | | - public AttachContainerCmd withTimestamps(Boolean timestamps); |
| 58 | + AttachContainerCmd withTimestamps(Boolean timestamps); |
59 | 59 |
|
60 | | - public AttachContainerCmd withStdOut(Boolean stdout); |
| 60 | + AttachContainerCmd withStdOut(Boolean stdout); |
61 | 61 |
|
62 | | - public AttachContainerCmd withStdErr(Boolean stderr); |
| 62 | + AttachContainerCmd withStdErr(Boolean stderr); |
63 | 63 |
|
64 | | - public AttachContainerCmd withStdIn(InputStream stdin); |
| 64 | + AttachContainerCmd withStdIn(InputStream stdin); |
65 | 65 |
|
66 | | - public AttachContainerCmd withLogs(Boolean logs); |
| 66 | + AttachContainerCmd withLogs(Boolean logs); |
67 | 67 |
|
68 | | - public static interface Exec extends DockerCmdAsyncExec<AttachContainerCmd, Frame> { |
| 68 | + interface Exec extends DockerCmdAsyncExec<AttachContainerCmd, Frame> { |
69 | 69 | } |
70 | 70 |
|
71 | 71 | } |
0 commit comments