Interface GatewayNotification
-
public interface GatewayNotification
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetEntity()Get the serialized response entity returned to the gatewayMap<String,List<String>>getHeaders()Get the headers to return to the gatewayUUIDgetKbPaymentId()List<PluginProperty>getProperties()intgetStatus()Get the status code associated with the response to the gateway
-
-
-
Method Detail
-
getKbPaymentId
UUID getKbPaymentId()
- Returns:
- the id in Kill Bill
-
getStatus
int getStatus()
Get the status code associated with the response to the gateway- Returns:
- the response status code or -1 if the status was not set
-
getEntity
String getEntity()
Get the serialized response entity returned to the gateway- Returns:
- an object instance or null if there is no entity
-
getHeaders
Map<String,List<String>> getHeaders()
Get the headers to return to the gateway- Returns:
- map of header key / values
-
getProperties
List<PluginProperty> getProperties()
- Returns:
- the list of custom properties set by the plugin
-
-