@Path(value="/") @RolesAllowed(value="authenticated") public class ProfileResources extends Object
Modifier and Type | Class and Description |
---|---|
static class |
ProfileResources.ProfileInfo |
class |
ProfileResources.QProfiles |
class |
ProfileResources.QProfilesBase |
class |
ProfileResources.QProfilesCompleted |
class |
ProfileResources.QProfilesRunning |
Constructor and Description |
---|
ProfileResources() |
Modifier and Type | Method and Description |
---|---|
String |
cancelQuery(String queryId) |
javax.ws.rs.core.Response |
getCompletedProfilesJSON(javax.ws.rs.core.UriInfo uriInfo) |
protected ClusterCoordinator |
getCoordinator() |
org.glassfish.jersey.server.mvc.Viewable |
getProfile(String queryId) |
javax.ws.rs.core.Response |
getProfileJSON(String queryId) |
org.glassfish.jersey.server.mvc.Viewable |
getProfiles(javax.ws.rs.core.UriInfo uriInfo) |
javax.ws.rs.core.Response |
getProfilesJSON(javax.ws.rs.core.UriInfo uriInfo) |
protected PersistentStoreProvider |
getProvider() |
javax.ws.rs.core.Response |
getRunningProfilesJSON(javax.ws.rs.core.UriInfo uriInfo) |
javax.ws.rs.core.Response |
getSpecificJSON(javax.ws.rs.core.UriInfo uriInfo,
String status) |
org.glassfish.jersey.server.mvc.Viewable |
viewProfile(String content) |
protected PersistentStoreProvider getProvider()
protected ClusterCoordinator getCoordinator()
@GET @Path(value="/profiles.json") @Produces(value="application/json") public javax.ws.rs.core.Response getProfilesJSON(@Context javax.ws.rs.core.UriInfo uriInfo)
@GET @Path(value="/profiles/json") @Produces(value="application/json") public javax.ws.rs.core.Response getSpecificJSON(@Context javax.ws.rs.core.UriInfo uriInfo, @QueryParam(value="status") String status)
@GET @Path(value="/profiles/running.json") @Produces(value="application/json") public javax.ws.rs.core.Response getRunningProfilesJSON(@Context javax.ws.rs.core.UriInfo uriInfo)
@GET @Path(value="/profiles/completed.json") @Produces(value="application/json") public javax.ws.rs.core.Response getCompletedProfilesJSON(@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 javax.ws.rs.core.Response 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)
@POST @Path(value="/profiles/view") @Consumes(value="multipart/form-data") @Produces(value="text/html") public org.glassfish.jersey.server.mvc.Viewable viewProfile(String content)
Copyright © 1970 The Apache Software Foundation. All rights reserved.