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

org.compass.annotations.Cascade Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package org.compass.annotations;

/**
 * Specifies cascading for an object relationship.
 *
 * @author kimchy
 */
public enum Cascade {
    /**
     * Perform cascading for all operations (create, save, delete).
     */
    ALL,

    /**
     * Perform cascading for create operations.
     */
    CREATE,

    /**
     * Perform cascading for save operations.
     */
    SAVE,

    /**
     * Perform cascading for delete operations.
     */
    DELETE
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy