All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.podio.root.RootAPI Maven / Gradle / Ivy

There is a newer version: 0.7.9
Show newest version
package com.podio.root;

import com.podio.ResourceFactory;

/**
 * Very basic API to get the status of the system.
 */
public class RootAPI {

	private final ResourceFactory resourceFactory;

	public RootAPI(ResourceFactory resourceFactory) {
		this.resourceFactory = resourceFactory;
	}

	/**
	 * @return The current status of the system
	 */
	public SystemStatus getStatus() {
		return resourceFactory.getApiResource("/", false).get(
				SystemStatus.class);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy