org.jsimpledb.spring.ScanClassesBeanDefinitionParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsimpledb-spring Show documentation
Show all versions of jsimpledb-spring Show documentation
JSimpleDB classes for the Spring Framework.
The newest version!
/*
* Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
*/
package org.jsimpledb.spring;
/**
* Parses <jsimpledb:scan-classes>
tags.
*/
class ScanClassesBeanDefinitionParser extends ScanClassPathBeanDefinitionParser {
@Override
Class> getBeanClass() {
return ScanClassesFactoryBean.class;
}
}