Class Strategy


  • public class Strategy
    extends java.lang.Object
    Strategy is a simple POJO representing a Merchandising Strategy.
    • Constructor Detail

      • Strategy

        public Strategy()
    • 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)