mn.foreman.api.model.Pool Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-api Show documentation
Show all versions of java-api Show documentation
A library for interacting with the Foreman API.
package mn.foreman.api.model;
import lombok.Builder;
import lombok.Data;
/** A mining pool. */
@Data
@Builder
public class Pool {
/** The pool password. */
private final String password;
/** The pool URL. */
private final String url;
/** The pool username. */
private final String username;
}