Class ReindexJobStatusEndpoint
java.lang.Object
com.broadleafcommerce.search.index.core.endpoint.ReindexJobStatusEndpoint
@FrameworkRestController
@FrameworkMapping("/job-status")
public class ReindexJobStatusEndpoint
extends Object
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected ReindexJobService<ReindexJob>
org.springframework.data.domain.Page<ReindexJob>
readAllJobStatuses
(org.springframework.data.domain.Pageable page, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo, String query, cz.jirutka.rsql.parser.ast.Node filters) readJobById
(String id, com.broadleafcommerce.data.tracking.core.context.ContextInfo context)
-
Constructor Details
-
ReindexJobStatusEndpoint
-
-
Method Details
-
readAllJobStatuses
@FrameworkGetMapping @Policy(permissionRoots="REINDEX", operationTypes=READ) public org.springframework.data.domain.Page<ReindexJob> readAllJobStatuses(@PageableDefault(sort="startTime",direction=DESC) org.springframework.data.domain.Pageable page, @ContextOperation com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo, @RequestParam(value="q",required=false) String query, cz.jirutka.rsql.parser.ast.Node filters) -
readJobById
@FrameworkGetMapping("/{id}") @Policy(permissionRoots="REINDEX", operationTypes=READ) public ReindexJob readJobById(@PathVariable("id") String id, @ContextOperation com.broadleafcommerce.data.tracking.core.context.ContextInfo context) -
getReindexJobService
-