com.ibm.commerce.tools.segmentation
Interface SegmentConstraintListCmd

All Superinterfaces:
TaskCommand

public interface SegmentConstraintListCmd
extends TaskCommand

This interface must be implemented to provide a task command that generates the HTML necessary for displaying the list of customer profile constraints. Different implementations of this interface can be provided for different stores.


Field Summary
static java.lang.String COPYRIGHT
Copyright.
static java.lang.String defaultCommandClassName
The name of the default implementation of this interface.
static java.lang.String Name
The name of this interface.
Method Summary
java.lang.String getConstraintList()
Returns the HTML that describes the customer profile constraints.
void setSegmentId(java.lang.Long segmentId) Sets the member group ID.
Field Detail

COPYRIGHT

public static final java.lang.String COPYRIGHT
Copyright.
See Also:
Constant Field Values

Name

public static final java.lang.String Name
The name of this interface.
See Also:
Constant Field Values

defaultCommandClassName

public static final java.lang.String defaultCommandClassName
The name of the default implementation of this interface.
See Also:
Constant Field Values
Method Detail

setSegmentId

public void setSegmentId(java.lang.Long segmentId)
Sets the member group ID. This parameter is required.
Parameters:
segmentId - The member group ID of the member group.

getConstraintList

public java.lang.String getConstraintList()
Returns the HTML that describes the customer profile constraints. You must execute this task command before accessing this value.
Returns:
HTML that describes the customer profile constraints.

Feedback