File tree Expand file tree Collapse file tree 5 files changed +8
-13
lines changed
cloudfoundry-client/src/main/java/org/cloudfoundry
integration-test/src/test/java/org/cloudfoundry/client/v3 Expand file tree Collapse file tree 5 files changed +8
-13
lines changed Original file line number Diff line number Diff line change 1717package org .cloudfoundry .client .v3 .processes ;
1818
1919import com .fasterxml .jackson .annotation .JsonProperty ;
20+ import org .cloudfoundry .Nullable ;
2021import org .cloudfoundry .client .v3 .Metadata ;
2122import org .cloudfoundry .client .v3 .Resource ;
22- import org .cloudfoundry .Nullable ;
2323
2424/**
2525 * Base class for responses that are processes
@@ -87,6 +87,4 @@ public abstract class Process extends Resource {
8787 @ JsonProperty ("log_rate_limit_in_bytes_per_second" )
8888 @ Nullable
8989 public abstract Integer getLogRateLimitInBytesPerSecond ();
90-
91-
9290}
Original file line number Diff line number Diff line change @@ -46,25 +46,24 @@ public abstract class Stack extends Resource {
4646 @ Nullable
4747 public abstract Metadata getMetadata ();
4848
49- /**
49+ /**
5050 * Build RootFS Image
5151 */
5252 @ JsonProperty ("build_rootfs_image" )
5353 @ Nullable
5454 abstract String getBuildRootfsImage ();
5555
56- /**
56+ /**
5757 * Run RootFS Image
5858 */
5959 @ JsonProperty ("run_rootfs_image" )
6060 @ Nullable
6161 abstract String getRunRootfsImage ();
6262
63- /**
63+ /**
6464 * Whether the stack is configured to be the default stack for new applications.
6565 */
6666 @ JsonProperty ("default" )
6767 @ Nullable
6868 abstract Boolean geDefault ();
69-
7069}
Original file line number Diff line number Diff line change @@ -96,5 +96,4 @@ public abstract class Task extends Resource {
9696 @ JsonProperty ("log_rate_limit_in_bytes_per_second" )
9797 @ Nullable
9898 public abstract Integer getLogRateLimitInBytesPerSecond ();
99-
100- }
99+ }
Original file line number Diff line number Diff line change @@ -67,14 +67,14 @@ abstract class AbstractTcpRoute {
6767
6868 /**
6969 * Backend TLS port
70- */
70+ */
7171 @ JsonProperty ("backend_tls_port" )
7272 @ Nullable
7373 abstract Integer getBackendTlsPort ();
7474
75- /**
75+ /**
7676 * Instance ID
77- */
77+ */
7878 @ JsonProperty ("instance_id" )
7979 @ Nullable
8080 abstract Integer getInstanceId ();
Original file line number Diff line number Diff line change 1717package org .cloudfoundry .client .v3 ;
1818
1919import static org .assertj .core .api .Assertions .assertThat ;
20- import static org .cloudfoundry .CloudFoundryVersion .PCF_2_9 ;
2120
2221import java .io .IOException ;
2322import java .nio .file .Path ;
You can’t perform that action at this time.
0 commit comments