@Produces(value="application/json")
@Path(value="/v0/remote")
public interface RemoteService
| Modifier and Type | Method and Description |
|---|---|
javax.ws.rs.core.Response |
calcStat(String store_name,
String typeName,
String statType,
String authorizations,
Boolean jsonFormatFlag) |
javax.ws.rs.core.Response |
clear(String store_name) |
javax.ws.rs.core.Response |
combineStats(String store_name) |
javax.ws.rs.core.Response |
listIndices(String store_name) |
javax.ws.rs.core.Response |
listStats(String store_name,
String typeName,
String authorizations,
Boolean jsonFormatFlag) |
javax.ws.rs.core.Response |
listTypes(String store_name) |
javax.ws.rs.core.Response |
recalcStats(String store_name,
String typeName,
String authorizations,
Boolean jsonFormatFlag) |
javax.ws.rs.core.Response |
removeStat(String store_name,
String typeName,
String statType,
String authorizations,
Boolean jsonFormatFlag) |
javax.ws.rs.core.Response |
removeType(String store_name,
String typeName) |
javax.ws.rs.core.Response |
version(String storename) |
@GET
@Produces(value="application/json")
@Consumes(value="multipart/form-data")
@Path(value="/listtypes")
javax.ws.rs.core.Response listTypes(@QueryParam(value="store_name")
String store_name)
@GET
@Produces(value="application/json")
@Consumes(value="multipart/form-data")
@Path(value="/listindices")
javax.ws.rs.core.Response listIndices(@QueryParam(value="store_name")
String store_name)
@GET
@Produces(value="application/json")
@Consumes(value="multipart/form-data")
@Path(value="/liststats")
javax.ws.rs.core.Response listStats(@QueryParam(value="store_name")
String store_name,
@QueryParam(value="typeName")
String typeName,
@QueryParam(value="authorizations")
String authorizations,
@QueryParam(value="jsonFormatFlag")
Boolean jsonFormatFlag)
@GET
@Produces(value="application/json")
@Consumes(value="multipart/form-data")
@Path(value="/version")
javax.ws.rs.core.Response version(@QueryParam(value="store_name")
String storename)
@POST
@Produces(value="application/json")
@Consumes(value="multipart/form-data")
@Path(value="/calcstat")
javax.ws.rs.core.Response calcStat(@QueryParam(value="store_name")
String store_name,
@QueryParam(value="datatype_name")
String typeName,
@QueryParam(value="stat_type")
String statType,
@QueryParam(value="authorizations")
String authorizations,
@QueryParam(value="jsonFormatFlag")
Boolean jsonFormatFlag)
@POST
@Produces(value="application/json")
@Consumes(value="multipart/form-data")
@Path(value="/clear")
javax.ws.rs.core.Response clear(@QueryParam(value="store_name")
String store_name)
@POST
@Produces(value="application/json")
@Consumes(value="multipart/form-data")
@Path(value="/combinestats")
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="/recalcstats")
javax.ws.rs.core.Response recalcStats(@QueryParam(value="store_name")
String store_name,
@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="/rmtype")
javax.ws.rs.core.Response removeType(@QueryParam(value="store_name")
String store_name,
@QueryParam(value="datatype_name")
String typeName)
@POST
@Produces(value="application/json")
@Consumes(value="multipart/form-data")
@Path(value="/rmstat")
javax.ws.rs.core.Response removeStat(@QueryParam(value="store_name")
String store_name,
@QueryParam(value="datatype_name")
String typeName,
@QueryParam(value="stat_type")
String statType,
@QueryParam(value="authorizations")
String authorizations,
@QueryParam(value="jsonFormatFlag")
Boolean jsonFormatFlag)
Copyright © 2013–2019. All rights reserved.