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