Package com.threepillar.labs.si.sns.core

Source Code of com.threepillar.labs.si.sns.core.NotificationHandler

package com.threepillar.labs.si.sns.core;

import org.springframework.integration.Message;

import com.threepillar.labs.si.aws.MessagePacket;

public abstract class NotificationHandler {

  protected abstract void dispatch(Message<?> message);

  public void onNotification(String notification) {
    MessagePacket packet = MessagePacket.fromJSON(notification);
    dispatch(packet.assemble());
  }
}
TOP

Related Classes of com.threepillar.labs.si.sns.core.NotificationHandler

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.