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

sf.database.annotations.Parameter Maven / Gradle / Ivy

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