Apa itu "sisi terbalik dari asosiasi" dalam asosiasi dua arah JPA OneToMany / ManyToOne dua arah?

Di bagian contoh @OneToManyreferensi anotasi JPA : Contoh 1-59 @OneToMany - Kelas Pelanggan dengan Generik @Entity public class Customer implements Serializable { ... @OneToMany(cascade=ALL, mappedBy="customer") public Set<Order> getOrders() { return orders; } ... } Contoh 1-60...