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

sqlg3.annotations.Business Maven / Gradle / Ivy

Go to download

SQLG is a preprocessor and a library that uses code generation to simplify writing JDBC code

There is a newer version: 3.1
Show newest version
package sqlg3.annotations;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Annotation for methods marking that given method is a business method
 * and should be present at data access interface.
 */
@Retention(RetentionPolicy.SOURCE)
@Target(ElementType.METHOD)
public @interface Business {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy