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

com.bld.commons.config.annotation.EnableJpaService Maven / Gradle / Ivy

The newest version!
/**
 * @author Francesco Baldi
 * @mail [email protected]
 * @class bld.commons.config.annotation.EnableJpaService.java
 * 
 */
package com.bld.commons.config.annotation;

import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;

import com.bld.commons.config.EnableJpaServiceConfiguration;

/**
 * The Interface EnableJpaService.
 */
@Configuration
@Documented
@Retention(RUNTIME)
@Target(TYPE)
@Import(EnableJpaServiceConfiguration.class)
public @interface EnableJpaService {

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy