Class TmaRecommendationApiController
- java.lang.Object
-
- de.hybris.platform.b2ctelcotmfwebservices.v2.controller.TmaBaseController
-
- de.hybris.platform.b2ctelcotmfwebservices.v2.controller.TmaRecommendationApiController
-
- All Implemented Interfaces:
RecommendationApi
@Controller public class TmaRecommendationApiController extends TmaBaseController implements RecommendationApi
Default implementation ofRecommendationApi.- Since:
- 1907
-
-
Constructor Summary
Constructors Constructor Description TmaRecommendationApiController(javax.servlet.http.HttpServletRequest request)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.springframework.http.ResponseEntity<java.util.List<Recommendation>>listRecommendation(@Valid java.lang.String relatedPartyId, @Valid java.lang.String subscriptionBaseId, @Valid java.lang.String processTypeId, @Valid java.lang.String productOfferingTermId, @Valid java.lang.String relatedProductOfferingId, @Valid java.lang.String fields, @Valid java.lang.Integer offset, @Valid java.lang.Integer limit)-
Methods inherited from class de.hybris.platform.b2ctelcotmfwebservices.v2.controller.TmaBaseController
encodeUrl, filter, getDataMapper, getObjectMapper, getQueryStringWithoutOffsetAndLimit, getRequestUrl, getUnsuccessfulResponse, getUnsuccessfulResponseWithErrorRepresentation, handleInternalError, handleModelNotFoundException, handleTmaApiErrorInternal, init, sanitize, sanitizeQueryString
-
-
-
-
Method Detail
-
listRecommendation
@RequestMapping(value="/recommendation", produces="application/json;charset=utf-8", method=GET) public org.springframework.http.ResponseEntity<java.util.List<Recommendation>> listRecommendation(@Valid @RequestParam(value="relatedParty.id",required=false) @Valid java.lang.String relatedPartyId, @Valid @RequestParam(value="subscriptionBase.id",required=false) @Valid java.lang.String subscriptionBaseId, @Valid @RequestParam(value="processType.id",required=false) @Valid java.lang.String processTypeId, @Valid @RequestParam(value="productOfferingTerm.id",required=false) @Valid java.lang.String productOfferingTermId, @Valid @RequestParam(value="relatedProductOffering.id",required=false) @Valid java.lang.String relatedProductOfferingId, @Valid @RequestParam(value="fields",required=false) @Valid java.lang.String fields, @Valid @RequestParam(value="offset",required=false) @Valid java.lang.Integer offset, @Valid @RequestParam(value="limit",required=false) @Valid java.lang.Integer limit)- Specified by:
listRecommendationin interfaceRecommendationApi
-
-