Class ProductFacet

java.lang.Object
com.hybris.merchandising.model.ProductFacet

public class ProductFacet extends Object
Facet represents a Facet for a product.
  • Constructor Details

    • ProductFacet

      public ProductFacet()
  • Method Details

    • getId

      public String getId()
      Retrieves the ID of the facet.
      Returns:
      a String representing the ID.
    • setId

      public void setId(String id)
      Sets the ID of the facet.
      Parameters:
      id - the ID to set for the Facet.
    • getName

      public String getName()
      Retrieves the name of the facet.
      Returns:
      a String representing the name.
    • setName

      public void setName(String name)
      Sets the name of the facet.
      Parameters:
      name - a String representing the name.
    • getValues

      public List<FacetValue> getValues()
      Retrieves a list of values for the facet.
      Returns:
      a List of FacetValue objects.
    • setValues

      public void setValues(List<FacetValue> values)
      Sets a list of values for the facet.
      Parameters:
      values - a List of FacetValue objects.