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

fr.ouestfrance.querydsl.postgrest.annotations.OnConflict Maven / Gradle / Ivy

There is a newer version: 1.4.3
Show newest version
package fr.ouestfrance.querydsl.postgrest.annotations;

import java.lang.annotation.*;

/**
 * OnConflict annotation to specify which columns compose the unique constraint
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Inherited
public @interface OnConflict {

    /**
     * Columns names of the unique constraint
     * @return Tab of the Columns names
     */
    String[] columnNames() default {};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy