
sf.database.annotations.Parameter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sorm Show documentation
Show all versions of sorm Show documentation
java jpa tool for spring
The newest version!
package sf.database.annotations;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
@Target({})
@Retention(RUNTIME)
public @interface Parameter {
/**
* The parameter name.
*/
String name();
/**
* The parameter value.
*/
String value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy