public XmlElement approve(XmlElement inputElement) {
logger.info(XMLUtil.xmlElementToString(inputElement));
ServiceNotificationSender notifier = ServiceNotificationSender.invoked(inputElement);
XmlElement amountElement = inputElement.requiredElement(null, "amount");
String amountString = amountElement.requiredTextContent();
int amount = Integer.parseInt(amountString);
logger.info("amount: " + amount);
Random random = new Random();
int msec = random.nextInt(5000);