Interface SegmentProcessHistoryService<P extends SegmentProcessHistory>
-
- All Superinterfaces:
com.broadleafcommerce.data.tracking.core.service.CrudEntityService<P>
- All Known Implementing Classes:
DefaultSegmentProcessHistoryService
public interface SegmentProcessHistoryService<P extends SegmentProcessHistory> extends com.broadleafcommerce.data.tracking.core.service.CrudEntityService<P>
Service API forSegmentProcessHistory
management
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.springframework.data.domain.Page<P>
readAllForSegment(String segmentId, org.springframework.data.domain.Pageable pageable, com.broadleafcommerce.data.tracking.core.context.ContextInfo context)
Read bulk processes performed for a specific segment-
Methods inherited from interface com.broadleafcommerce.data.tracking.core.service.CrudEntityService
create, createAll, createAllAllowingPartialSuccess, delete, readAll, readAll, readAll, readAllByContextId, readByContextId, replace, replaceAll, replaceAllAllowingPartialSuccess, update, updateAll, updateAllAllowingPartialSuccess, updateSort
-
-
-
-
Method Detail
-
readAllForSegment
org.springframework.data.domain.Page<P> readAllForSegment(@NonNull String segmentId, @NonNull org.springframework.data.domain.Pageable pageable, com.broadleafcommerce.data.tracking.core.context.ContextInfo context)
Read bulk processes performed for a specific segment- Parameters:
segmentId
- The segment IDcontext
- Context information surrounding sandboxing and multitenant state- Returns:
- A page of segment processed
-
-