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

com.googlecode.jdbcproc.daofactory.annotation.AStoredProcedure Maven / Gradle / Ivy

There is a newer version: 1.1-35
Show newest version
package com.googlecode.jdbcproc.daofactory.annotation;

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

/**
 * Stored procedure
 */
@Retention(RUNTIME)
@Target(ElementType.METHOD)
public @interface AStoredProcedure {
    /**
     * Stored procedure name
     * @return name of store procedure
     */
    String name();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy