Interface ProductTailoringAttribute


public interface ProductTailoringAttribute

The same rules for name and value apply as for Attribute in Product Variants.


Example to create an instance using the builder pattern

     ProductTailoringAttribute productTailoringAttribute = ProductTailoringAttribute.builder()
             .name("{name}")
             .build()
 
  • Method Details

    • getName

      @NotNull @NotNull String getName()

      Name of the Attribute.

      Returns:
      name
    • getValue

      @NotNull @NotNull Object getValue()

      The AttributeType determines the format of the Attribute value to be provided:

      • For Enum Type and Localized Enum Type, use the key of the Plain Enum Value or Localized Enum Value objects, or the complete objects as value.
      • For Localizable Text Type, use the LocalizedString object as value.
      • For Money Type Attributes, use the Money object as value.
      • For Set Type Attributes, use the entire set object as value.
      • For Reference Type Attributes, use the Reference object as value.

      Tailoring of Nested Type Attributes is not supported.

      Returns:
      value
    • setName

      void setName(String name)

      Name of the Attribute.

      Parameters:
      name - value to be set
    • setValue

      void setValue(Object value)

      The AttributeType determines the format of the Attribute value to be provided:

      • For Enum Type and Localized Enum Type, use the key of the Plain Enum Value or Localized Enum Value objects, or the complete objects as value.
      • For Localizable Text Type, use the LocalizedString object as value.
      • For Money Type Attributes, use the Money object as value.
      • For Set Type Attributes, use the entire set object as value.
      • For Reference Type Attributes, use the Reference object as value.

      Tailoring of Nested Type Attributes is not supported.

      Parameters:
      value - value to be set
    • of

      factory method
      Returns:
      instance of ProductTailoringAttribute
    • of

      factory method to create a shallow copy ProductTailoringAttribute
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • deepCopy

      factory method to create a deep copy of ProductTailoringAttribute
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • builder

      builder factory method for ProductTailoringAttribute
      Returns:
      builder
    • builder

      create builder for ProductTailoringAttribute instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withProductTailoringAttribute

      default <T> T withProductTailoringAttribute(Function<ProductTailoringAttribute,T> helper)
      accessor map function
      Type Parameters:
      T - mapped type
      Parameters:
      helper - function to map the object
      Returns:
      mapped value
    • typeReference

      static com.fasterxml.jackson.core.type.TypeReference<ProductTailoringAttribute> typeReference()
      gives a TypeReference for usage with Jackson DataBind
      Returns:
      TypeReference