001/* 002 * The contents of this file are subject to the license and copyright 003 * detailed in the LICENSE and NOTICE files at the root of the source 004 * tree. 005 */ 006 007package org.fcrepo.camel.toolbox.app; 008 009 010import org.apache.camel.spring.javaconfig.CamelConfiguration; 011import org.springframework.context.annotation.ComponentScan; 012import org.springframework.context.annotation.Configuration; 013 014/** 015 * A configuration class for the application 016 * 017 * @author dbernstein 018 */ 019@Configuration 020@ComponentScan(basePackages = {"org.fcrepo.camel"}) 021public class AppConfig extends CamelConfiguration { 022 023 024}