Package com.hybris.merchandising.model
Class MixAssociation
- java.lang.Object
-
- com.hybris.merchandising.model.MixAssociation
-
public class MixAssociation extends java.lang.ObjectMixAssociation is a POJO representing an association between a Strategy and a Mixcard.
-
-
Constructor Summary
Constructors Constructor Description MixAssociation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<Category>getCategories()java.lang.StringgetId()java.lang.StringgetMixcardId()java.lang.StringgetTimeEnd()java.lang.StringgetTimeStart()voidsetCategories(java.util.List<Category> categories)Sets the categories.voidsetId(java.lang.String id)voidsetMixcardId(java.lang.String mixcardId)voidsetTimeEnd(java.lang.String timeEnd)voidsetTimeStart(java.lang.String timeStart)
-
-
-
Method Detail
-
getId
public java.lang.String getId()
- Returns:
- the id. This is the ID of the association.
-
setId
public void setId(java.lang.String id)
- Parameters:
id- the id to set. This is the ID of the association.
-
getMixcardId
public java.lang.String getMixcardId()
- Returns:
- the mixcardId. This is the ID of the Mixcard being used.
-
setMixcardId
public void setMixcardId(java.lang.String mixcardId)
- Parameters:
mixcardId- the mixcardId to set. This is the ID of the Mixcard being used.
-
getTimeStart
public java.lang.String getTimeStart()
- Returns:
- the timeStart. This is an ISO-8601 timestamp representing the time that the association is valid for.
-
setTimeStart
public void setTimeStart(java.lang.String timeStart)
- Parameters:
timeStart- the timeStart to set. This is an ISO-8601 timestamp representing the time that the association is valid for.
-
getTimeEnd
public java.lang.String getTimeEnd()
- Returns:
- the timeEnd. This is an ISO-8601 timestamp representing the time that the association is valid for.
-
setTimeEnd
public void setTimeEnd(java.lang.String timeEnd)
- Parameters:
timeEnd- the timeEnd to set. . This is an ISO-8601 timestamp representing the time that the association is valid for.
-
getCategories
public java.util.List<Category> getCategories()
- Returns:
- the categories. This is a list of Categories that the association has.
-
setCategories
public void setCategories(java.util.List<Category> categories)
Sets the categories.- Parameters:
categories- . This is a list of Categories that the association has.
-
-