Package com.hybris.merchandising.model
Class Strategy
- java.lang.Object
-
- com.hybris.merchandising.model.Strategy
-
public class Strategy extends java.lang.ObjectStrategy is a simple POJO representing a Merchandising Strategy.
-
-
Constructor Summary
Constructors Constructor Description Strategy()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()java.lang.StringgetId()java.lang.BooleangetLive()java.util.List<MixAssociation>getMixAssociations()java.lang.StringgetName()voidsetDescription(java.lang.String description)voidsetId(java.lang.String id)voidsetLive(java.lang.Boolean live)voidsetMixAssociations(java.util.List<MixAssociation> associations)voidsetName(java.lang.String name)
-
-
-
Method Detail
-
getId
public java.lang.String getId()
- Returns:
- the id. This is the ID of the Strategy.
-
setId
public void setId(java.lang.String id)
- Parameters:
id- the id to set. This is the ID of the Strategy.
-
getName
public java.lang.String getName()
- Returns:
- the name. This is the name of the Strategy.
-
setName
public void setName(java.lang.String name)
- Parameters:
name- the name to set. This is the name of the Strategy.
-
getDescription
public java.lang.String getDescription()
- Returns:
- the description. This is a free text description of the Strategy.
-
setDescription
public void setDescription(java.lang.String description)
- Parameters:
description- the description to set. This is a free text description of the Strategy.
-
getLive
public java.lang.Boolean getLive()
- Returns:
- live - whether the Strategy is configured to be live or not.
-
setLive
public void setLive(java.lang.Boolean live)
- Parameters:
live- the live to set - whether the Strategy is configured to be live or not.
-
getMixAssociations
public java.util.List<MixAssociation> getMixAssociations()
- Returns:
- the mixAssociations. This is a list of associations that the Strategy has.
-
setMixAssociations
public void setMixAssociations(java.util.List<MixAssociation> associations)
-
-