...
@ElementCollection
@CollectionTable(name="customer_preferences", joinColumns=@JoinColumn(name="user_id", referencedColumnName = "login"))
@AttributeOverrides({
@AttributeOverride(name="preferencesKey",
column=@Column(name="preferences_key")),
@AttributeOverride(name="preferencesValue",
column=@Column(name="preferences_value"))
})
private Set<CustomerPreferences> customerPreferencesSet = new HashSet<CustomerPreferences>(0);
...