All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.shinesolutions.aemorchestrator.handler.TestNotificationEventHandler Maven / Gradle / Ivy

Go to download

Java application for orchestrating AEM infrastructure created using aem-aws-stack-builder

There is a newer version: 4.0.0
Show newest version
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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy