Interface GeographicAddressApi
- All Known Implementing Classes:
TmaGeographicAddressApiController
@Generated(value="de.hybris.platform.b2ctelcotmfwebservices.swagger.TelcoCodegen",
date="2022-10-21T20:34:47.671Z")
@Validated
@RequestMapping("")
public interface GeographicAddressApi
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<GeographicAddress>createGeographicAddress(@Valid GeographicAddress geographicAddress, @NotNull @Valid String relatedPartyPeriodid) org.springframework.http.ResponseEntity<Void>deleteGeographicAddress(String id, @NotNull @Valid String relatedPartyPeriodid) org.springframework.http.ResponseEntity<List<GeographicAddress>>geographicAddressFind(@Valid String fields, @Valid String baseSiteId, @Valid String relatedPartyPeriodid, @Valid String offset, @Valid String limit) org.springframework.http.ResponseEntity<GeographicAddress>getGeographicAddressById(String id, @Valid String fields, @Valid String relatedPartyPeriodid) org.springframework.http.ResponseEntity<GeographicAddress>updateGeographicAddressById(String id, @Valid GeographicAddress geographicAddress, @NotNull @Valid String relatedPartyPeriodid)
-
Method Details
-
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 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<Void> deleteGeographicAddress(@PathVariable("id") String id, @NotNull @Valid @RequestParam(value="relatedParty.id",required=true) @NotNull @Valid String relatedPartyPeriodid) -
geographicAddressFind
@RequestMapping(value="/geographicAddress", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<List<GeographicAddress>> geographicAddressFind(@Valid @RequestParam(value="fields",required=false) @Valid String fields, @Valid @RequestParam(value="baseSiteId",required=false) @Valid String baseSiteId, @Valid @RequestParam(value="relatedParty.id",required=false) @Valid String relatedPartyPeriodid, @Valid @RequestParam(value="offset",required=false) @Valid String offset, @Valid @RequestParam(value="limit",required=false) @Valid 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") String id, @Valid @RequestParam(value="fields",required=false) @Valid String fields, @Valid @RequestParam(value="relatedParty.id",required=false) @Valid 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") String id, @Valid @RequestBody @Valid GeographicAddress geographicAddress, @NotNull @Valid @RequestParam(value="relatedParty.id",required=true) @NotNull @Valid String relatedPartyPeriodid)
-