Package com.commercetools.sync.services
Interface StateService
-
- All Known Implementing Classes:
StateServiceImpl
public interface StateService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.concurrent.CompletionStage<java.util.Map<java.lang.String,java.lang.String>>cacheKeysToIds(java.util.Set<java.lang.String> keys)Filters out the keys which are already cached and fetches only the not-cached state keys from the CTP project defined in an injectedSphereClientand stores a mapping for every state to id in the cached map of keys -> ids and returns this cached map.java.util.concurrent.CompletionStage<java.util.Optional<io.sphere.sdk.states.State>>createState(io.sphere.sdk.states.StateDraft stateDraft)Given a resource draft of typeStateDraft, this method attempts to create a resourceStatebased on it in the CTP project defined by the sync options.java.util.concurrent.CompletionStage<java.util.Optional<java.lang.String>>fetchCachedStateId(java.lang.String key)Given akey, this method first checks if a cached map of state keys -> ids is not empty.java.util.concurrent.CompletionStage<java.util.Set<io.sphere.sdk.states.State>>fetchMatchingStatesByKeys(java.util.Set<java.lang.String> stateKeys)Given aSetof state keys, this method fetches a set of all the states, matching given set of keys in the CTP project, defined in an injectedSphereClient.java.util.concurrent.CompletionStage<java.util.Set<io.sphere.sdk.states.State>>fetchMatchingStatesByKeysWithTransitions(java.util.Set<java.lang.String> stateKeys)Given aSetof state keys, this method fetches a set of all the states with expanded transitions, matching given set of keys in the CTP project, defined in an injectedSphereClient.java.util.concurrent.CompletionStage<java.util.Optional<io.sphere.sdk.states.State>>fetchState(java.lang.String key)Given a state key, this method fetches a state that matches given key in the CTP project defined in a potentially injectedSphereClient.java.util.concurrent.CompletionStage<io.sphere.sdk.states.State>updateState(io.sphere.sdk.states.State state, java.util.List<io.sphere.sdk.commands.UpdateAction<io.sphere.sdk.states.State>> updateActions)Given aStateand aList<UpdateAction<State>>, this method issues an update request with these update actions on thisStatein the CTP project defined in a potentially injectedSphereClient.
-
-
-
Method Detail
-
cacheKeysToIds
@Nonnull java.util.concurrent.CompletionStage<java.util.Map<java.lang.String,java.lang.String>> cacheKeysToIds(@Nonnull java.util.Set<java.lang.String> keys)Filters out the keys which are already cached and fetches only the not-cached state keys from the CTP project defined in an injectedSphereClientand stores a mapping for every state to id in the cached map of keys -> ids and returns this cached map.Note: If all the supplied keys are already cached, the cached map is returned right away with no request to CTP.
- Parameters:
keys- the state keys to fetch and cache the ids for.- Returns:
CompletionStage<Map> in which the result of it's completion contains a map of all state keys -> ids
-
fetchCachedStateId
@Nonnull java.util.concurrent.CompletionStage<java.util.Optional<java.lang.String>> fetchCachedStateId(@Nullable java.lang.String key)Given akey, this method first checks if a cached map of state keys -> ids is not empty. If not, it returns a completed future that contains an optional that contains what this key maps to in the cache. If the cache is empty, the method populates the cache with the mapping of all state keys to ids in the CTP project, by querying the CTP project for all states.After that, the method returns a
CompletionStage<Optional<String>> in which the result of it's completion could contain anOptionalwith the id inside of it or an emptyOptionalif noStatewas found in the CTP project with this key.- Parameters:
key- the key by which aStateid should be fetched from the CTP project.- Returns:
CompletionStage<Optional<String>> in which the result of its completion could contain anOptionalwith the id inside of it or an emptyOptionalif noStatewas found in the CTP project with this key.
-
fetchMatchingStatesByKeys
@Nonnull java.util.concurrent.CompletionStage<java.util.Set<io.sphere.sdk.states.State>> fetchMatchingStatesByKeys(@Nonnull java.util.Set<java.lang.String> stateKeys)Given aSetof state keys, this method fetches a set of all the states, matching given set of keys in the CTP project, defined in an injectedSphereClient. A mapping of the key to the id of the fetched states is persisted in an in-memory map.- Parameters:
stateKeys- set of state keys to fetch matching states by.- Returns:
CompletionStage<Map> in which the result of it's completion contains aSetof all matching states.
-
fetchMatchingStatesByKeysWithTransitions
@Nonnull java.util.concurrent.CompletionStage<java.util.Set<io.sphere.sdk.states.State>> fetchMatchingStatesByKeysWithTransitions(@Nonnull java.util.Set<java.lang.String> stateKeys)Given aSetof state keys, this method fetches a set of all the states with expanded transitions, matching given set of keys in the CTP project, defined in an injectedSphereClient. A mapping of the key to the id of the fetched states is persisted in an in-memory map.- Parameters:
stateKeys- set of state keys to fetch matching states by.- Returns:
CompletionStage<Map> in which the result of it's completion contains aSetof all matching states with expanded transitions.
-
fetchState
@Nonnull java.util.concurrent.CompletionStage<java.util.Optional<io.sphere.sdk.states.State>> fetchState(@Nullable java.lang.String key)Given a state key, this method fetches a state that matches given key in the CTP project defined in a potentially injectedSphereClient. If there is no matching state an emptyOptionalwill be returned in the returned future. A mapping of the key to the id of the fetched state is persisted in an in -memory map.- Parameters:
key- the key of the state to fetch.- Returns:
CompletionStage<Optional> in which the result of it's completion contains anOptionalthat contains the matchingStateif exists, otherwise empty.
-
createState
@Nonnull java.util.concurrent.CompletionStage<java.util.Optional<io.sphere.sdk.states.State>> createState(@Nonnull io.sphere.sdk.states.StateDraft stateDraft)Given a resource draft of typeStateDraft, this method attempts to create a resourceStatebased on it in the CTP project defined by the sync options.A completion stage containing an empty option and the error callback will be triggered in those cases:
- the draft has a blank key
- the create request fails on CTP
On the other hand, if the resource gets created successfully on CTP, then the created resource's id and key are cached and the method returns a
CompletionStagein which the result of it's completion contains an instanceOptionalof the resource which was created.- Parameters:
stateDraft- the resource draft to create a resource based off of.- Returns:
- a
CompletionStagecontaining an optional with the created resource if successful otherwise an empty optional.
-
updateState
@Nonnull java.util.concurrent.CompletionStage<io.sphere.sdk.states.State> updateState(@Nonnull io.sphere.sdk.states.State state, @Nonnull java.util.List<io.sphere.sdk.commands.UpdateAction<io.sphere.sdk.states.State>> updateActions)Given aStateand aList<UpdateAction<State>>, this method issues an update request with these update actions on thisStatein the CTP project defined in a potentially injectedSphereClient. This method returnsCompletionStage<State> in which the result of it's completion contains an instance of theStatewhich was updated in the CTP project.- Parameters:
state- theStateto update.updateActions- the update actions to update theStatewith.- Returns:
CompletionStage<State> containing as a result of it's completion an instance of theStatewhich was updated in the CTP project or aSphereException.
-
-