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

io.ebean.config.ModuleInfo Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
package io.ebean.config;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Used by generated code to hold entity classes to register with Ebean.
 */
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface ModuleInfo {

  /**
   * Returns the entity classes with db name prefix.
   * 

* The db name prefix is added to entity classes for non default databases. */ String[] entities() default {}; /** * Other classes like Attribute Converters. */ String[] other() default {}; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy