com.shinesolutions.aemorchestrator.handler.TestNotificationEventHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-orchestrator Show documentation
Show all versions of aem-orchestrator Show documentation
Java application for orchestrating AEM infrastructure created using aem-aws-stack-builder
package com.shinesolutions.aemorchestrator.handler;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Component;
@Component
public class TestNotificationEventHandler implements MessageHandler {
private final Logger logger = LoggerFactory.getLogger(this.getClass());
@Override
public boolean handleEvent(String message) {
logger.debug("Raw message: " + message);
logger.info("Test notification received, ignoring");
return true;
}
}