Interface AgentCertRequestResource


@Path("agent/certrequests") public interface AgentCertRequestResource
  • Method Details

    • listRequests

      @GET @Path("") javax.ws.rs.core.Response listRequests(@QueryParam("requestState") String requestState, @QueryParam("requestType") String requestType, @QueryParam("start") RequestId start, @QueryParam("pageSize") Integer pageSize, @QueryParam("maxResults") Integer maxResults, @QueryParam("maxTime") Integer maxTime)
      Used to generate list of cert requests based on the search parameters
    • reviewRequest

      @GET @Path("{id}") javax.ws.rs.core.Response reviewRequest(@PathParam("id") RequestId id)
    • approveRequest

      @POST @Path("{id}/approve") javax.ws.rs.core.Response approveRequest(@PathParam("id") RequestId id, CertReviewResponse data)
    • rejectRequest

      @POST @Path("{id}/reject") javax.ws.rs.core.Response rejectRequest(@PathParam("id") RequestId id, CertReviewResponse data)
    • cancelRequest

      @POST @Path("{id}/cancel") javax.ws.rs.core.Response cancelRequest(@PathParam("id") RequestId id, CertReviewResponse data)
    • updateRequest

      @POST @Path("{id}/update") javax.ws.rs.core.Response updateRequest(@PathParam("id") RequestId id, CertReviewResponse data)
    • validateRequest

      @POST @Path("{id}/validate") javax.ws.rs.core.Response validateRequest(@PathParam("id") RequestId id, CertReviewResponse data)
    • unassignRequest

      @POST @Path("{id}/unassign") javax.ws.rs.core.Response unassignRequest(@PathParam("id") RequestId id, CertReviewResponse data)
    • assignRequest

      @POST @Path("{id}/assign") javax.ws.rs.core.Response assignRequest(@PathParam("id") RequestId id, CertReviewResponse data)