mn.foreman.api.endpoints.autominer.Autominer 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.autominer;
import mn.foreman.api.model.ApiType;
import java.util.Map;
/**
* An {@link Autominer} provides a handler for interacting with the autominer
* API endpoints.
*/
public interface Autominer {
/**
* Returns all of the autominer mappings.
*
* @return The autominer mappings.
*/
Map mappings();
}