Class TextLineItemReferenceResolver

    • Constructor Detail

      • TextLineItemReferenceResolver

        public TextLineItemReferenceResolver​(@Nonnull
                                             ShoppingListSyncOptions shoppingListSyncOptions,
                                             @Nonnull
                                             TypeService typeService)
        Takes a ShoppingListSyncOptions instance, a TypeService to instantiate a TextLineItemReferenceResolver instance that could be used to resolve the text line-item drafts in the CTP project specified in the injected ShoppingListSyncOptions instance.
        Parameters:
        shoppingListSyncOptions - the container of all the options of the sync process including the CTP project client and/or configuration and other sync-specific options.
        typeService - the service to fetch the types for reference resolution.
    • Method Detail

      • resolveReferences

        @Nonnull
        public java.util.concurrent.CompletionStage<io.sphere.sdk.shoppinglists.TextLineItemDraft> resolveReferences​(@Nonnull
                                                                                                                     io.sphere.sdk.shoppinglists.TextLineItemDraft textLineItemDraft)
        Given a TextLineItemDraft this method attempts to resolve the attribute definition references to return a CompletionStage which contains a new instance of the draft with the resolved references.
        Specified by:
        resolveReferences in class BaseReferenceResolver<io.sphere.sdk.shoppinglists.TextLineItemDraft,​ShoppingListSyncOptions>
        Parameters:
        textLineItemDraft - the textLineItemDraft to resolve its references.
        Returns:
        a CompletionStage that contains as a result a new textLineItemDraft instance with resolved references or, in case an error occurs during reference resolution, a ReferenceResolutionException.
      • resolveCustomTypeReference

        @Nonnull
        protected java.util.concurrent.CompletionStage<io.sphere.sdk.shoppinglists.TextLineItemDraftBuilder> resolveCustomTypeReference​(@Nonnull
                                                                                                                                        io.sphere.sdk.shoppinglists.TextLineItemDraftBuilder draftBuilder)
        Description copied from class: CustomReferenceResolver
        Given a draft of D (e.g. CategoryDraft) this method attempts to resolve it's custom type reference to return CompletionStage which contains a new instance of the draft with the resolved custom type reference.

        The method then tries to fetch the key of the custom type, optimistically from a cache. If the key is is not found, the resultant draft would remain exactly the same as the passed draft (without a custom type reference resolution).

        Specified by:
        resolveCustomTypeReference in class CustomReferenceResolver<io.sphere.sdk.shoppinglists.TextLineItemDraft,​io.sphere.sdk.shoppinglists.TextLineItemDraftBuilder,​ShoppingListSyncOptions>
        Parameters:
        draftBuilder - the draft builder to resolve it's references.
        Returns:
        a CompletionStage that contains as a result a new draft instance with resolved custom type references or, in case an error occurs during reference resolution, a ReferenceResolutionException.