Class TypeSyncUtils


  • public final class TypeSyncUtils
    extends java.lang.Object
    • Method Detail

      • buildActions

        @Nonnull
        public static java.util.List<com.commercetools.api.models.type.TypeUpdateAction> buildActions​(@Nonnull
                                                                                                      com.commercetools.api.models.type.Type oldType,
                                                                                                      @Nonnull
                                                                                                      com.commercetools.api.models.type.TypeDraft newType,
                                                                                                      @Nonnull
                                                                                                      TypeSyncOptions syncOptions)
        Compares all the fields (including the field definitions see TypeUpdateActionUtils.buildFieldDefinitionsUpdateActions(Type, TypeDraft, TypeSyncOptions)) of a Type and a TypeDraft. It returns a List of TypeUpdateAction as a result. If no update actions are needed, for example in case where both the Type and the TypeDraft have the same fields, an empty List is returned.

        Note: The commercetools API doesn't support the following:

        • removing the EnumValue/LocalizedEnumValue of a FieldDefinition
        • changing the required field of a FieldDefinition
        Parameters:
        oldType - the Type which should be updated.
        newType - the TypeDraft where we get the new data.
        syncOptions - the sync options wrapper which contains options related to the sync process supplied by the user. For example, custom callbacks to call in case of warnings or errors occurring on the build update action process. And other options (See TypeSyncOptions for more info.
        Returns:
        A list of type-specific update actions.