Class TmaGeographicAddressApiController

java.lang.Object
de.hybris.platform.b2ctelcotmfwebservices.v3.controller.TmaBaseController
de.hybris.platform.b2ctelcotmfwebservices.v3.controller.TmaGeographicAddressApiController
All Implemented Interfaces:
GeographicAddressApi

@Controller public class TmaGeographicAddressApiController extends TmaBaseController implements GeographicAddressApi
Default implementation of GeographicAddressApi
Since:
2302
  • Constructor Details

    • TmaGeographicAddressApiController

      public TmaGeographicAddressApiController(javax.servlet.http.HttpServletRequest request)
  • Method Details

    • listGeographicAddress

      @RequestMapping(value="/geographicAddress", produces="application/json;charset=utf-8", method=GET) public org.springframework.http.ResponseEntity<List<GeographicAddress>> listGeographicAddress(@Valid @RequestParam(value="baseSiteId",required=false) @Valid String baseSiteId, @Valid @RequestParam(value="fields",required=false) @Valid String fields, @Valid @RequestParam(value="offset",required=false) @Valid Integer offset, @Valid @RequestParam(value="limit",required=false) @Valid Integer limit, @Valid @RequestParam(value="relatedParty.id",required=false) @Valid String relatedPartyId)
      Specified by:
      listGeographicAddress in interface GeographicAddressApi
    • retrieveGeographicAddress

      @RequestMapping(value="/geographicAddress/{id}", produces="application/json;charset=utf-8", method=GET) public org.springframework.http.ResponseEntity<GeographicAddress> retrieveGeographicAddress(@PathVariable("id") String id, @Valid @RequestParam(value="fields",required=false) @Valid String fields, @Valid @RequestParam(value="relatedParty.id",required=false) @Valid String relatedPartyId)
      Specified by:
      retrieveGeographicAddress in interface GeographicAddressApi
    • listGeographicSubAddress

      @RequestMapping(value="/geographicAddress/{geographicAddressId}/geographicSubAddress", produces="application/json;charset=utf-8", method=GET) public org.springframework.http.ResponseEntity<List<GeographicSubAddress>> listGeographicSubAddress(@PathVariable("geographicAddressId") String geographicAddressId, @Valid @RequestParam(value="fields",required=false) @Valid String fields, @Valid @RequestParam(value="offset",required=false) @Valid Integer offset, @Valid @RequestParam(value="limit",required=false) @Valid Integer limit, @Valid @RequestParam(value="relatedParty.id",required=false) @Valid String relatedPartyId)
      Specified by:
      listGeographicSubAddress in interface GeographicAddressApi
    • retrieveGeographicSubAddress

      @RequestMapping(value="/geographicAddress/{geographicAddressId}/geographicSubAddress/{id}", produces="application/json;charset=utf-8", method=GET) public org.springframework.http.ResponseEntity<GeographicSubAddress> retrieveGeographicSubAddress(@PathVariable("geographicAddressId") String geographicAddressId, @PathVariable("id") String id, @Valid @RequestParam(value="fields",required=false) @Valid String fields, @Valid @RequestParam(value="relatedParty.id",required=false) @Valid String relatedPartyId)
      Specified by:
      retrieveGeographicSubAddress in interface GeographicAddressApi
    • getUserFacade

      protected TmaUserFacade getUserFacade()
    • getTmaAddressFacade

      protected TmaAddressFacade getTmaAddressFacade()
    • getTmaPaginationFacade

      protected TmaPaginationFacade getTmaPaginationFacade()