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

org.hibernate.annotations.Persister Maven / Gradle / Ivy

There is a newer version: 3.5.6-Final
Show newest version
//$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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy