| 
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT | ||||||||
@Target(value={})
@Retention(value=RUNTIME)
public @interface UniqueConstraintSpecifies 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 { ... }
 
| Required Element Summary | |
|---|---|
 java.lang.String[] | 
columnNames
(Required) An array of the column names that make up the constraint.  | 
| Optional Element Summary | |
|---|---|
 java.lang.String | 
name
(Optional) Constraint name.  | 
| Element Detail | 
|---|
public abstract java.lang.String[] columnNames
public abstract java.lang.String name
  | 
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT | ||||||||
Copyright © 2009-2011, Oracle Corporation and/or its affiliates. All Rights Reserved. Use is subject to license terms.
Generated on 10-February-2011 12:41