mn.foreman.api.endpoints.ping.Ping 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.endpoints.ping;
/** Pings the dashboard to verify the credentials worked. */
public interface Ping {
/**
* Pings the dashboard to validate connectivity.
*
* @return Whether or not the dashboard was reachable.
*/
boolean ping();
/**
* Pings the dashboard to validate auth against the client.
*
* @return The client.
*/
boolean pingClient();
}