public final class StateReferenceResolutionUtils
extends java.lang.Object
| Modifier and Type | Method and Description |
|---|---|
static io.sphere.sdk.states.queries.StateQuery |
buildStateQuery()
Builds a
StateQuery for fetching states from a source CTP project with all the needed
references expanded for the sync:
Transition States
|
static java.util.List<io.sphere.sdk.states.StateDraft> |
mapToStateDrafts(java.util.List<io.sphere.sdk.states.State> states)
Returns an
List<StateDraft> consisting of the results of applying the
mapping from State to StateDraft with considering reference resolution. |
@Nonnull
public static java.util.List<io.sphere.sdk.states.StateDraft> mapToStateDrafts(@Nonnull
java.util.List<io.sphere.sdk.states.State> states)
List<StateDraft> consisting of the results of applying the
mapping from State to StateDraft with considering reference resolution.
| Reference field | from | to |
|---|---|---|
| transitions | Set<Reference<State>> |
Set<Reference<State>> (with key replaced with id field) |
Note: The transition references should be expanded with a key. Any reference that is not expanded will have its id in place and not replaced by the key will be considered as existing resources on the target commercetools project and the library will issues an update/create API request without reference resolution.
states - the states with expanded references.List of StateDraft built from the
supplied List of State.public static io.sphere.sdk.states.queries.StateQuery buildStateQuery()
StateQuery for fetching states from a source CTP project with all the needed
references expanded for the sync:
Note: Please only use this util if you desire to sync all the aforementioned references from a source commercetools project. Otherwise, it is more efficient to build the query without expansions, if they are not needed, to avoid unnecessarily bigger payloads fetched from the source project.