javax.persistence
Annotation Type IdClass


@Target(value=TYPE)
@Retention(value=RUNTIME)
public @interface IdClass

Specifies a composite primary key class that is mapped to multiple fields or properties of the entity.

The names of the fields or properties in the primary key class and the primary key fields or properties of the entity must correspond and their types must be the same.


   Example:

   @IdClass(com.example.EmployeePK.class)
   @Entity
   public class Employee {
      @Id String empName;
      @Id Date birthDay;
      ...
   }
 

Since:
Java Persistence 1.0

Required Element Summary
 java.lang.Class value
          Primary key class
 

Element Detail

value

public abstract java.lang.Class value
Primary key class



Submit a bug or feature

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

Scripting on this page tracks web page traffic, but does not change the content in any way.