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

com.github.fluent.hibernate.annotations.FluentName Maven / Gradle / Ivy

Go to download

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