Skip to content

Instantly share code, notes, and snippets.

@billy-bacon
Created November 15, 2013 02:09
Show Gist options
  • Save billy-bacon/7478009 to your computer and use it in GitHub Desktop.
Save billy-bacon/7478009 to your computer and use it in GitHub Desktop.
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