com.github.fluent.hibernate.annotations.FluentName Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluent-hibernate-core Show documentation
Show all versions of fluent-hibernate-core Show documentation
A library to work with Hibernate by fluent API. This library hasn't dependencies except Hibernate dependencies. It requires Java 1.6 and above.
The newest version!
package com.github.fluent.hibernate.annotations;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
*
* @author V.Ladynev
*/
@Target({ METHOD, FIELD })
@Retention(RUNTIME)
public @interface FluentName {
/**
* Prefix for a name.
*/
String prefix() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy