Class LoyaltySchemaCodeCriteria
- java.lang.Object
-
- com.inteliqua.rest.customer.search.criteria.member.LoyaltySchemaCodeCriteria
-
- All Implemented Interfaces:
SearchCriteria,PersonCriteria,LoyaltyMembershipCriteria
public class LoyaltySchemaCodeCriteria extends Object implements LoyaltyMembershipCriteria
Represents the criteria for searching a customer based on the loyalty schema code. This is used to filter members who belong to a specific loyalty schema.- Author:
- [Your Name]
-
-
Constructor Summary
Constructors Constructor Description LoyaltySchemaCodeCriteria(String schemaCode)Ctor .
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCriteriaType()Gets the criteria type for this search.StringgetSchemaCode()Gets the schema code for the loyalty schema.voidsetSchemaCode(String schemaCode)Sets the schema code for the loyalty schema.StringtoString()Returns a string representation of the loyalty schema code criteria.
-
-
-
Field Detail
-
TYPE
public static final String TYPE
The type of the search criteria, which in this case is the "SCHEMA_CODE".- See Also:
- Constant Field Values
-
-
Constructor Detail
-
LoyaltySchemaCodeCriteria
public LoyaltySchemaCodeCriteria(String schemaCode)
Ctor .- Parameters:
schemaCode- schemaCode
-
-
Method Detail
-
getSchemaCode
public String getSchemaCode()
Gets the schema code for the loyalty schema.- Returns:
- the schema code of the loyalty schema
-
setSchemaCode
public void setSchemaCode(String schemaCode)
Sets the schema code for the loyalty schema.- Parameters:
schemaCode- the schema code of the loyalty schema
-
getCriteriaType
public String getCriteriaType()
Gets the criteria type for this search.- Specified by:
getCriteriaTypein interfaceSearchCriteria- Returns:
- the criteria type, which is "SCHEMA_CODE"
-
-