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

org.openbp.config.handler.AutowiringHandlerConfig Maven / Gradle / Ivy

There is a newer version: 0.9.11
Show newest version
package org.openbp.config.handler;

import org.openbp.core.handler.HandlerFactory;
import org.openbp.server.handler.AutowiringHandlerFactory;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * Spring configuration that supports using the @Autowired annotation within handler implementations.
 */
@Configuration
public class AutowiringHandlerConfig
{
	@Bean
	public HandlerFactory handlerFactory()
	{
		return new AutowiringHandlerFactory();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy