Skip to content

Commit

Permalink
run spotless:apply
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonydahanne committed Nov 1, 2024
1 parent 101414b commit 64d955e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
package org.cloudfoundry.client.v3.processes;

import com.fasterxml.jackson.annotation.JsonProperty;
import org.cloudfoundry.Nullable;
import org.cloudfoundry.client.v3.Metadata;
import org.cloudfoundry.client.v3.Resource;
import org.cloudfoundry.Nullable;

/**
* Base class for responses that are processes
Expand Down Expand Up @@ -87,6 +87,4 @@ public abstract class Process extends Resource {
@JsonProperty("log_rate_limit_in_bytes_per_second")
@Nullable
public abstract Integer getLogRateLimitInBytesPerSecond();


}
Original file line number Diff line number Diff line change
Expand Up @@ -46,25 +46,24 @@ public abstract class Stack extends Resource {
@Nullable
public abstract Metadata getMetadata();

/**
/**
* Build RootFS Image
*/
@JsonProperty("build_rootfs_image")
@Nullable
abstract String getBuildRootfsImage();

/**
/**
* Run RootFS Image
*/
@JsonProperty("run_rootfs_image")
@Nullable
abstract String getRunRootfsImage();

/**
/**
* Whether the stack is configured to be the default stack for new applications.
*/
@JsonProperty("default")
@Nullable
abstract Boolean geDefault();

}
Original file line number Diff line number Diff line change
Expand Up @@ -96,5 +96,4 @@ public abstract class Task extends Resource {
@JsonProperty("log_rate_limit_in_bytes_per_second")
@Nullable
public abstract Integer getLogRateLimitInBytesPerSecond();

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,14 @@ abstract class AbstractTcpRoute {

/**
* Backend TLS port
*/
*/
@JsonProperty("backend_tls_port")
@Nullable
abstract Integer getBackendTlsPort();

/**
/**
* Instance ID
*/
*/
@JsonProperty("instance_id")
@Nullable
abstract Integer getInstanceId();
Expand Down

0 comments on commit 64d955e

Please sign in to comment.