Class SegmentStatus
- java.lang.Object
-
- com.broadleafcommerce.customer.domain.SegmentStatus
-
public final class SegmentStatus extends Object
The possible statuses available for rule based customer segments.
-
-
Field Summary
Fields Modifier and Type Field Description static String
INITIALIZATION_REQUIRED
The initial status of a newly created customer segment.static String
PROCESSING
Status indicating the customer segment is currently being processed.static String
READY
Status indicating the customer segment has been completely processed.static String
UPDATE_REQUIRED
Status indicating a "dirty" segment.
-
-
-
Field Detail
-
INITIALIZATION_REQUIRED
public static final String INITIALIZATION_REQUIRED
The initial status of a newly created customer segment. Segments in this state are not ready for use and must be processed.- See Also:
- Constant Field Values
-
UPDATE_REQUIRED
public static final String UPDATE_REQUIRED
Status indicating a "dirty" segment. Indicates the customer segment has been updated and requires re-processing.- See Also:
- Constant Field Values
-
PROCESSING
public static final String PROCESSING
Status indicating the customer segment is currently being processed. Segments in this state may have a partial list of customers added, but have not been fully evaluated.- See Also:
- Constant Field Values
-
READY
public static final String READY
Status indicating the customer segment has been completely processed.- See Also:
- Constant Field Values
-
-