org.hibernate.annotations.Persister Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-annotations
Show all versions of hibernate-annotations
Annotations metadata for Hibernate
//$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();
}