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

io.dropwizard.hibernate.UnitsOfWork Maven / Gradle / Ivy

There is a newer version: 5.0.0-alpha.2
Show newest version
package io.dropwizard.hibernate;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

/**
 * Container annotation for repeated {@link UnitOfWork} annotations.
 */
@Target(METHOD)
@Retention(RUNTIME)
@Documented
public @interface UnitsOfWork {
    UnitOfWork[] value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy