@Produces(value="application/json")
@Path(value="/v0/stat")
public interface StatService
| Modifier and Type | Method and Description |
|---|---|
javax.ws.rs.core.Response |
calcStat(String storeName,
String typeName,
String statType,
String authorizations,
Boolean jsonFormatFlag) |
javax.ws.rs.core.Response |
combineStats(String store_name) |
javax.ws.rs.core.Response |
listStats(String storeName,
String typeName,
String authorizations,
Boolean jsonFormatFlag) |
javax.ws.rs.core.Response |
recalcStats(String storeName,
String typeName,
String authorizations,
Boolean jsonFormatFlag) |
javax.ws.rs.core.Response |
removeStat(String storeName,
String typeName,
String statType,
String authorizations,
Boolean jsonFormatFlag) |
@GET
@Produces(value="application/json")
@Consumes(value="multipart/form-data")
@Path(value="/list")
javax.ws.rs.core.Response listStats(@QueryParam(value="storeName")
String storeName,
@QueryParam(value="typeName")
String typeName,
@QueryParam(value="authorizations")
String authorizations,
@QueryParam(value="jsonFormatFlag")
Boolean jsonFormatFlag)
@POST
@Produces(value="application/json")
@Consumes(value="multipart/form-data")
@Path(value="/calc")
javax.ws.rs.core.Response calcStat(@QueryParam(value="storeName")
String storeName,
@QueryParam(value="datatypeName")
String typeName,
@QueryParam(value="statType")
String statType,
@QueryParam(value="authorizations")
String authorizations,
@QueryParam(value="jsonFormatFlag")
Boolean jsonFormatFlag)
@POST
@Produces(value="application/json")
@Consumes(value="multipart/form-data")
@Path(value="/compact")
javax.ws.rs.core.Response combineStats(@QueryParam(value="store_name")
String store_name)
@POST
@Produces(value="application/json")
@Consumes(value="multipart/form-data")
@Path(value="/recalc")
javax.ws.rs.core.Response recalcStats(@QueryParam(value="storeName")
String storeName,
@QueryParam(value="typeName")
String typeName,
@QueryParam(value="authorizations")
String authorizations,
@QueryParam(value="jsonFormatFlag")
Boolean jsonFormatFlag)
@POST
@Produces(value="application/json")
@Consumes(value="multipart/form-data")
@Path(value="/rm")
javax.ws.rs.core.Response removeStat(@QueryParam(value="storeName")
String storeName,
@QueryParam(value="datatypeName")
String typeName,
@QueryParam(value="statType")
String statType,
@QueryParam(value="authorizations")
String authorizations,
@QueryParam(value="jsonFormatFlag")
Boolean jsonFormatFlag)
Copyright © 2013–2019. All rights reserved.