Subversion Repositories WebE

Rev

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

1
//$Id: $
package org.hibernate.annotations;

import java.lang.annotation.*;

/**
 * Specify a custom persister.
 *
 * @author Shawn Clowater
 */

@java.lang.annotation.Target({ElementType.TYPE, ElementType.METHOD, ElementType.FIELD})
@Retention( RetentionPolicy.RUNTIME )
public @interface Persister {
        /** Custom persister */
        Class impl();
}