com.aol.micro.server.events.plugin.EventsPlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micro-events Show documentation
Show all versions of micro-events Show documentation
Opinionated rest microservices
package com.aol.micro.server.events.plugin;
import com.aol.micro.server.Plugin;
import com.aol.micro.server.events.ConfigureActiveJobsAspect;
import com.aol.micro.server.rest.resources.ConfigureResources;
import cyclops.collections.immutable.PersistentSetX;
/**
*
* Collections of Spring configuration classes (Classes annotated with @Configuration)
* that configure various useful pieces of functionality - such as property file loading,
* datasources, scheduling etc
*
* @author johnmcclean
*
*/
public class EventsPlugin implements Plugin{
@Override
public PersistentSetX springClasses() {
return PersistentSetX.of(
ConfigureActiveJobsAspect.class,
ConfigureResources.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy