Class TypeSyncUtils
- java.lang.Object
-
- com.commercetools.sync.types.utils.TypeSyncUtils
-
public final class TypeSyncUtils extends java.lang.Object
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.util.List<io.sphere.sdk.commands.UpdateAction<io.sphere.sdk.types.Type>>buildActions(io.sphere.sdk.types.Type oldType, io.sphere.sdk.types.TypeDraft newType, TypeSyncOptions syncOptions)Compares all the fields (including the field definitions seeTypeUpdateActionUtils.buildFieldDefinitionsUpdateActions(Type, TypeDraft, TypeSyncOptions)) of aTypeand aTypeDraft.
-
-
-
Method Detail
-
buildActions
@Nonnull public static java.util.List<io.sphere.sdk.commands.UpdateAction<io.sphere.sdk.types.Type>> buildActions(@Nonnull io.sphere.sdk.types.Type oldType, @Nonnull io.sphere.sdk.types.TypeDraft newType, @Nonnull TypeSyncOptions syncOptions)Compares all the fields (including the field definitions seeTypeUpdateActionUtils.buildFieldDefinitionsUpdateActions(Type, TypeDraft, TypeSyncOptions)) of aTypeand aTypeDraft. It returns aListofUpdateAction<Type> as a result. If no update actions are needed, for example in case where both theTypeand theTypeDrafthave the same fields, an emptyListis returned.Note: Currently this util doesn't support the following:
- updating the inputHint of a FieldDefinition
- removing the EnumValue/LocalizedEnumValue of a FieldDefinition
- updating the label of a EnumValue/LocalizedEnumValue of a FieldDefinition
- Parameters:
oldType- theTypewhich should be updated.newType- theTypeDraftwhere 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 (SeeTypeSyncOptionsfor more info.- Returns:
- A list of type-specific update actions.
-
-