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

com.cqrs.annotations.EventHandlersProcessor Maven / Gradle / Ivy

package com.cqrs.annotations;

import javax.annotation.processing.SupportedAnnotationTypes;
import javax.annotation.processing.SupportedSourceVersion;
import javax.lang.model.SourceVersion;

@SupportedAnnotationTypes("com.cqrs.annotations.EventHandler")
@SupportedSourceVersion(SourceVersion.RELEASE_8)
public class EventHandlersProcessor extends AbstractEventHandlerProcessor {

    public static final String EVENT_HANDLERS_DIRECTORY = "com_cqrs_annotations_EventHandlers";

    @Override
    protected String getOutputDirectory() {
        return EVENT_HANDLERS_DIRECTORY;
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy