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

se.fortnox.reactivewizard.db.Update Maven / Gradle / Ivy

There is a newer version: 24.6.0
Show newest version
package se.fortnox.reactivewizard.db;

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

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface Update {
    /**
     * The update query.
     * @return the query.
     */
    String value();

    /**
     * Number of rows to be affected, not to be considered an error.
     * @return number of rows
     */
    int minimumAffected() default 1;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy