Annotation Interface UniqueConstraint


@Target({}) @Retention(RUNTIME) public @interface UniqueConstraint
Specifies that a unique constraint is to be included in the generated DDL for a primary or secondary table.

Example:

@Entity
@Table(
    name = "EMPLOYEE",
    uniqueConstraints = @UniqueConstraint(columnNames = {"EMP_ID", "EMP_NAME"})
)
public class Employee { ... }
Since:
1.0