Subversion Repositories WebE

Rev

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

1
package org.hibernate.annotations;

/**
 * Enumeration for the different interaction modes between the session and
 * the Level 2 Cache.
 *
 * @author Emmanuel Bernard
 * @author Carlos González-Cadenas
 */


public enum CacheModeType {
        GET,
        IGNORE,
        NORMAL,
        PUT,
        REFRESH
}