Interface AgentCertRequestResource


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

    • listRequests

      @GET @Path("") jakarta.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}") jakarta.ws.rs.core.Response reviewRequest(@PathParam("id") RequestId id)
    • approveRequest

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

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

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

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

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

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

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