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

ru.curs.celesta.score.FKRule Maven / Gradle / Ivy

The newest version!
package ru.curs.celesta.score;

/**
 * Foreign key rule type when deleting or updating primary key
 * of the parent record.
 */
public enum FKRule {
    /**
     * Prohibits modification of the parent record.
     */
    NO_ACTION,
    /**
     * Cascade modification of referring records.
     */
    CASCADE,
    /**
     * Setting referring fields to {@code null}.
     */
    SET_NULL
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy