Subversion Repositories WebE

Rev

View as "text/plain" | Blame | Last modification | View Log | RSS feed

1
//$Id: CascadeType.java 11282 2007-03-14 22:05:59Z epbernard $
//EJB3 Specification Copyright 2004-2006 Sun Microsystems, Inc.
package javax.persistence;

/**
 * Defines the set of cascadable operations that are propagated to the associated entity.
 * The value cascade=ALL is equivalent to cascade={PERSIST, MERGE, REMOVE, REFRESH}.
 *
 * @author Emmanuel Bernard
 */

public enum CascadeType {
        /**
         * Cascade all operations
         */

        ALL,
        /**
         * Cascade persist operations
         */

        PERSIST,
        /**
         * Cascade merge operations
         */

        MERGE,
        /**
         * Cascade remove operations
         */

        REMOVE,
        /**
         * Cascade refresh operations
         */

        REFRESH
}