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 Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.springframework.http.ResponseEntity<GeographicAddress>createGeographicAddress(@Valid GeographicAddress geographicAddress, @NotNull @Valid java.lang.String relatedPartyPeriodid)org.springframework.http.ResponseEntity<java.lang.Void>deleteGeographicAddress(java.lang.String id, @NotNull @Valid java.lang.String relatedPartyPeriodid)org.springframework.http.ResponseEntity<java.util.List<GeographicAddress>>geographicAddressFind(@Valid java.lang.String fields, @Valid java.lang.String baseSiteId, @Valid java.lang.String relatedPartyPeriodid, @Valid java.lang.String offset, @Valid java.lang.String limit)org.springframework.http.ResponseEntity<GeographicAddress>getGeographicAddressById(java.lang.String id, @Valid java.lang.String fields, @Valid java.lang.String relatedPartyPeriodid)org.springframework.http.ResponseEntity<GeographicAddress>updateGeographicAddressById(java.lang.String id, @Valid GeographicAddress geographicAddress, @NotNull @Valid java.lang.String relatedPartyPeriodid)
-
-
-
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)
-
-