Interface ListenerApi
- All Known Implementing Classes:
BaListenerController
public interface ListenerApi
Interface handling operations for BillingAccount's events.
- Since:
- 2302
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<Void>listenToBillingAccountAttributeValueChangeEvent(@Valid BillingAccountAttributeValueChangeEvent data) org.springframework.http.ResponseEntity<Void>
-
Method Details
-
listenToBillingAccountAttributeValueChangeEvent
@RequestMapping(value="/listener/billingAccountAttributeValueChangeEvent", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=POST) org.springframework.http.ResponseEntity<Void> listenToBillingAccountAttributeValueChangeEvent(@Valid @RequestBody @Valid BillingAccountAttributeValueChangeEvent data) -
listenToBillingAccountStateChangeEvent
@RequestMapping(value="/listener/billingAccountStateChangeEvent", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=POST) org.springframework.http.ResponseEntity<Void> listenToBillingAccountStateChangeEvent(@Valid @RequestBody @Valid BillingAccountStateChangeEvent data)
-