Created
November 15, 2013 02:09
-
-
Save billy-bacon/7478009 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.alex.integration.processor; | |
| import org.slf4j.Logger; | |
| import org.slf4j.LoggerFactory; | |
| import org.springframework.stereotype.Component; | |
| @Component("pushNotificationMessageProcessor") | |
| public class PushNotificationMessageProcessor { | |
| private static final Logger log = LoggerFactory.getLogger(PushNotificationMessageProcessor.class); | |
| public PushNotificationMessageProcessor() { | |
| } | |
| public void process(String message) { | |
| log.info("message received {}", message); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment