Package com.hybris.merchandising.service
Interface MerchStrategyServiceClient
public interface MerchStrategyServiceClient
MerchStrategyServiceClient is an JAX-RS client for the Merch v2 Strategy Service.
-
Method Summary
Modifier and TypeMethodDescriptiongetStrategies is an API for returning allStrategyentities configured without pagination.getStrategies(Integer pageNumber, Integer pageSize) getStrategies is an API for returning a list of configuredStrategyentities.getStrategy(String id) getStrategy is an API for returning aStrategyentity with an id
-
Method Details
-
getStrategies
@GET @Path("/${tenant}/strategies") List<Strategy> getStrategies(@QueryParam("pageNumber") Integer pageNumber, @QueryParam("pageSize") Integer pageSize) getStrategies is an API for returning a list of configuredStrategyentities. This is intended for use with pagination. -
getStrategies
getStrategies is an API for returning allStrategyentities configured without pagination. -
getStrategy
getStrategy is an API for returning aStrategyentity with an id
-