de.cinovo.cloudconductor.api.interfaces.IStats Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudconductor-api Show documentation
Show all versions of cloudconductor-api Show documentation
Server to manage deployment environments
package de.cinovo.cloudconductor.api.interfaces;
import javax.ws.rs.Consumes;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import de.cinovo.cloudconductor.api.MediaType;
import de.cinovo.cloudconductor.api.model.Statistics;
/**
* Copyright 2017 Cinovo AG
*
*
* @author mweise
*/
@Path("/stats")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
public interface IStats {
/**
* @return application statistics
*/
@GET
Statistics get();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy