Annotation Interface DAO.Table

Enclosing class:
DAO

@Target(TYPE) @Retention(RUNTIME) @Inherited @Documented public static @interface DAO.Table
Annotation used to set the name of the table on which the specific DAO acts. It must be filled with the string that represents the name of the table on which you want to access and operate. It can be even a string that defines a join between two tables, for example AUSER JOIN TUSER ON AUSEID_TUSE = TUSEID; in this case each operation performed with the DAO will act on the view created by the join clause.
  • Required Element Summary

    Required Elements
    Modifier and Type
    Required Element
    Description
     
  • Element Details