@Path(value="/") @RolesAllowed(value="authenticated") public class ProfileResources extends Object
| Modifier and Type | Class and Description |
|---|---|
static class |
ProfileResources.ProfileInfo |
class |
ProfileResources.QProfiles |
| Constructor and Description |
|---|
ProfileResources() |
| Modifier and Type | Method and Description |
|---|---|
String |
cancelQuery(String queryId) |
protected ClusterCoordinator |
getCoordinator() |
org.glassfish.jersey.server.mvc.Viewable |
getProfile(String queryId) |
String |
getProfileJSON(String queryId) |
org.glassfish.jersey.server.mvc.Viewable |
getProfiles(javax.ws.rs.core.UriInfo uriInfo) |
ProfileResources.QProfiles |
getProfilesJSON(javax.ws.rs.core.UriInfo uriInfo) |
protected PersistentStoreProvider |
getProvider() |
protected PersistentStoreProvider getProvider()
protected ClusterCoordinator getCoordinator()
@GET @Path(value="/profiles.json") @Produces(value="application/json") public ProfileResources.QProfiles getProfilesJSON(@Context javax.ws.rs.core.UriInfo uriInfo)
@GET
@Path(value="/profiles")
@Produces(value="text/html")
public org.glassfish.jersey.server.mvc.Viewable getProfiles(@Context
javax.ws.rs.core.UriInfo uriInfo)
@GET
@Path(value="/profiles/{queryid}.json")
@Produces(value="application/json")
public String getProfileJSON(@PathParam(value="queryid")
String queryId)
@GET
@Path(value="/profiles/{queryid}")
@Produces(value="text/html")
public org.glassfish.jersey.server.mvc.Viewable getProfile(@PathParam(value="queryid")
String queryId)
Copyright © 2017 The Apache Software Foundation. All rights reserved.