Advertisement
Guest User

Untitled

a guest
Dec 8th, 2013
412
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. @Target({TYPE}) @Retention(RUNTIME)
  2. public @interface Table
  3. {
  4.    String name( ) default "";
  5.    String catalog( ) default "";
  6.    String schema( ) default "";
  7.    UniqueConstraint
  8.  uniqueConstraints( ) default {};
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement