Interface GeographicAddressApi

  • All Known Implementing Classes:
    TmaGeographicAddressApiController

    @Generated(value="de.hybris.platform.b2ctelcotmfwebservices.swagger.TelcoCodegen",
               date="2020-06-25T12:53:59.275Z")
    public interface GeographicAddressApi
    • Method Detail

      • createGeographicAddress

        @RequestMapping(value="/geographicAddress",
                        produces="application/json;charset=utf-8",
                        consumes="application/json;charset=utf-8",
                        method=POST)
        org.springframework.http.ResponseEntity<GeographicAddress> createGeographicAddress​(@Valid @RequestBody
                                                                                           @Valid GeographicAddress geographicAddress,
                                                                                           @NotNull @Valid @RequestParam(value="relatedParty.id",required=true)
                                                                                           @NotNull @Valid java.lang.String relatedPartyPeriodid)
      • deleteGeographicAddress

        @RequestMapping(value="/geographicAddress/{id}",
                        produces="application/json;charset=utf-8",
                        consumes="application/json;charset=utf-8",
                        method=DELETE)
        org.springframework.http.ResponseEntity<java.lang.Void> deleteGeographicAddress​(@PathVariable("id")
                                                                                        java.lang.String id,
                                                                                        @NotNull @Valid @RequestParam(value="relatedParty.id",required=true)
                                                                                        @NotNull @Valid java.lang.String relatedPartyPeriodid)
      • geographicAddressFind

        @RequestMapping(value="/geographicAddress",
                        produces="application/json;charset=utf-8",
                        consumes="application/json;charset=utf-8",
                        method=GET)
        org.springframework.http.ResponseEntity<java.util.List<GeographicAddress>> geographicAddressFind​(@Valid @RequestParam(value="fields",required=false)
                                                                                                         @Valid java.lang.String fields,
                                                                                                         @Valid @RequestParam(value="baseSiteId",required=false)
                                                                                                         @Valid java.lang.String baseSiteId,
                                                                                                         @Valid @RequestParam(value="relatedParty.id",required=false)
                                                                                                         @Valid java.lang.String relatedPartyPeriodid,
                                                                                                         @Valid @RequestParam(value="offset",required=false)
                                                                                                         @Valid java.lang.String offset,
                                                                                                         @Valid @RequestParam(value="limit",required=false)
                                                                                                         @Valid java.lang.String limit)
      • getGeographicAddressById

        @RequestMapping(value="/geographicAddress/{id}",
                        produces="application/json;charset=utf-8",
                        consumes="application/json;charset=utf-8",
                        method=GET)
        org.springframework.http.ResponseEntity<GeographicAddress> getGeographicAddressById​(@PathVariable("id")
                                                                                            java.lang.String id,
                                                                                            @Valid @RequestParam(value="fields",required=false)
                                                                                            @Valid java.lang.String fields,
                                                                                            @Valid @RequestParam(value="relatedParty.id",required=false)
                                                                                            @Valid java.lang.String relatedPartyPeriodid)
      • updateGeographicAddressById

        @RequestMapping(value="/geographicAddress/{id}",
                        produces="application/json;charset=utf-8",
                        consumes="application/json;charset=utf-8",
                        method=PATCH)
        org.springframework.http.ResponseEntity<GeographicAddress> updateGeographicAddressById​(@PathVariable("id")
                                                                                               java.lang.String id,
                                                                                               @Valid @RequestBody
                                                                                               @Valid GeographicAddress geographicAddress,
                                                                                               @NotNull @Valid @RequestParam(value="relatedParty.id",required=true)
                                                                                               @NotNull @Valid java.lang.String relatedPartyPeriodid)