Interface SetMetaKeywordsChange

All Superinterfaces:
Change
All Known Implementing Classes:
SetMetaKeywordsChangeImpl

public interface SetMetaKeywordsChange extends Change

Change triggered by the following update actions:

  • Set Meta Keywords on Categories.
  • Set Meta Keywords on Products.

Example to create an instance using the builder pattern

     SetMetaKeywordsChange setMetaKeywordsChange = SetMetaKeywordsChange.builder()
             .change("{change}")
             .previousValue(previousValueBuilder -> previousValueBuilder)
             .nextValue(nextValueBuilder -> nextValueBuilder)
             .build()