|
Java EE 5 SDK | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
| SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT | ||||||||
This annotation is used to override mappings of multiple many-to-one or one-to-one relationship properties or fields.
Example:
@MappedSuperclass
public class Employee {
@Id protected Integer id;
@Version protected Integer version;
@ManyToOne protected Address address;
@OneToOne protected Locker locker;
public Integer getId() { ... }
public void setId(Integer id) { ... }
public Address getAddress() { ... }
public void setAddress(Address address) { ... }
public Locker getLocker() { ... }
public void setLocker(Locker locker) { ... }
}
@Entity
@AssociationOverrides({
@AssociationOverride(name="address",
joinColumns=@JoinColumn("ADDR_ID")),
@AttributeOverride(name="locker",
joinColumns=@JoinColumn("LCKR_ID"))})
public PartTimeEmployee { ... }
| Required Element Summary | |
|---|---|
AssociationOverride[] |
value
Mapping overrides of relationship properties or fields |
| Element Detail |
|---|
public abstract AssociationOverride[] value
|
Java EE 5 SDK | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
| SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT | ||||||||
Copyright 2007 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms.
Scripting on this page tracks web page traffic, but does not change the content in any way.