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

net.anotheria.portalkit.services.approval.ApprovalServiceConfiguration Maven / Gradle / Ivy

package net.anotheria.portalkit.services.approval;

import net.anotheria.portalkit.services.common.spring.JpaSpringConfiguration;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;

/**
 * TODO comment this class
 *
 * @author lrosenberg
 * @since 13.03.16 23:43
 */
@Import(JpaSpringConfiguration.class)
@ComponentScan(ApprovalServiceConfiguration.BASE_PACKAGE)
@Configuration
public class ApprovalServiceConfiguration extends JpaSpringConfiguration {

    public static final String BASE_PACKAGE = "net.anotheria.portalkit.services.approval";

	@Override
	protected String getServiceName() {
		return "approval";
	}

	@Override
	protected String getBasePackage() {
        return BASE_PACKAGE;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy