Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.40 KB | None | 0 0
  1. private Map<String, String> buildPayload(final User customer)
  2.     {
  3.         return ImmutableMap.of(
  4.                 NotificationKey.CUSTOMER_FIRSTNAME, notificationDataManager.getCustomerName(customer),
  5.                 NotificationKey.SERVICE_TEAM_EMAIL, serviceTeamContactProperties.getEmail(),
  6.                 NotificationKey.SERVICE_TEAM_PHONE_NUMBER, serviceTeamContactProperties.getPhoneNumber());
  7.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement