Uses of Class
de.hybris.platform.couponwebservices.dto.SingleCodeCouponWsDTO
-
-
Uses of SingleCodeCouponWsDTO in de.hybris.platform.couponwebservices.controllers
Methods in de.hybris.platform.couponwebservices.controllers that return SingleCodeCouponWsDTO Modifier and Type Method Description SingleCodeCouponWsDTOCouponservicesController. createSingleCodeCouponWsDTO(SingleCodeCouponWsDTO couponWsDTO)Method to create a new single-code coupon object given in POST body parameter
Example : URL : http://localhost:9001/couponwebservices/couponservices/v2/singlecodecoupon Method : POST Header : Content-Type=application/json POST body parameter :{ "couponId" : "TEST_COUPON1", "name":"test_coupon", "maxRedemptionsPerCustomer":"2", "maxTotalRedemptions":"10" }SingleCodeCouponWsDTOCouponservicesController. getSingleCodeCoupon(java.lang.String couponId, java.lang.String fields)Request to get a single-code coupon with given couponIdMethods in de.hybris.platform.couponwebservices.controllers that return types with arguments of type SingleCodeCouponWsDTO Modifier and Type Method Description protected CouponWsFacades<SingleCodeCouponWsDTO>CouponservicesController. getSingleCodeCouponWsFacades()protected CouponWsFacades<SingleCodeCouponWsDTO>CouponservicesV2Controller. getSingleCodeCouponWsFacades()Methods in de.hybris.platform.couponwebservices.controllers with parameters of type SingleCodeCouponWsDTO Modifier and Type Method Description SingleCodeCouponWsDTOCouponservicesController. createSingleCodeCouponWsDTO(SingleCodeCouponWsDTO couponWsDTO)Method to create a new single-code coupon object given in POST body parameter
Example : URL : http://localhost:9001/couponwebservices/couponservices/v2/singlecodecoupon Method : POST Header : Content-Type=application/json POST body parameter :{ "couponId" : "TEST_COUPON1", "name":"test_coupon", "maxRedemptionsPerCustomer":"2", "maxTotalRedemptions":"10" }voidCouponservicesController. updateSingleCodeCouponWsDTO(SingleCodeCouponWsDTO couponWsDTO)Method to update a single-code coupon object given in PUT body parameter
Example : URL : http://localhost:9001/couponwebservices/couponservices/v2/singlecodecoupon/update Method : PUT Header : Content-Type=application/json PUT body parameter :{ "couponId" : "TEST_COUPON1", "name":"test_coupon", "maxRedemptionsPerCustomer":"2", "maxTotalRedemptions":"10" } -
Uses of SingleCodeCouponWsDTO in de.hybris.platform.couponwebservices.facades.impl
Methods in de.hybris.platform.couponwebservices.facades.impl that return types with arguments of type SingleCodeCouponWsDTO Modifier and Type Method Description protected java.util.Optional<SingleCodeCouponWsDTO>DefaultSingleCodeCouponWsFacades. convert(AbstractCouponModel couponModel)protected Converter<SingleCodeCouponModel,SingleCodeCouponWsDTO>DefaultSingleCodeCouponWsFacades. getSingleCodeCouponWsDTOConverter()Methods in de.hybris.platform.couponwebservices.facades.impl with parameters of type SingleCodeCouponWsDTO Modifier and Type Method Description protected SingleCodeCouponModelDefaultSingleCodeCouponWsFacades. createCouponModel(SingleCodeCouponWsDTO couponDto)protected SingleCodeCouponModelDefaultSingleCodeCouponWsFacades. updateCouponModel(SingleCodeCouponWsDTO couponDto)Method parameters in de.hybris.platform.couponwebservices.facades.impl with type arguments of type SingleCodeCouponWsDTO Modifier and Type Method Description voidDefaultSingleCodeCouponWsFacades. setSingleCodeCouponWsDTOConverter(Converter<SingleCodeCouponModel,SingleCodeCouponWsDTO> singleCodeCouponWsDTOConverter) -
Uses of SingleCodeCouponWsDTO in de.hybris.platform.couponwebservices.populators
Methods in de.hybris.platform.couponwebservices.populators with parameters of type SingleCodeCouponWsDTO Modifier and Type Method Description protected voidSingleCodeCouponWsPopulator. convertSingleCodeCoupon(SingleCodeCouponModel source, SingleCodeCouponWsDTO target)voidSingleCodeCouponWsPopulator. populate(SingleCodeCouponModel source, SingleCodeCouponWsDTO target) -
Uses of SingleCodeCouponWsDTO in de.hybris.platform.couponwebservices.validator
Methods in de.hybris.platform.couponwebservices.validator that return types with arguments of type SingleCodeCouponWsDTO Modifier and Type Method Description protected java.lang.Class<SingleCodeCouponWsDTO>SingleCodeCouponWsDTOValidator. getSupportingClass()
-