mirror of
https://github.com/theonedev/onedev.git
synced 2025-12-08 18:26:30 +00:00
17 lines
408 B
Java
17 lines
408 B
Java
package com.pmease.commons.hibernate;
|
|
|
|
import static java.lang.annotation.RetentionPolicy.RUNTIME;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.Target;
|
|
|
|
import com.google.inject.BindingAnnotation;
|
|
|
|
@Retention(RUNTIME)
|
|
@Target({ ElementType.FIELD, ElementType.PARAMETER, ElementType.METHOD })
|
|
@BindingAnnotation
|
|
public @interface Hibernate {
|
|
|
|
}
|