blob: 9298dbb8ac2eea928e0b6f754ad812b4181ff582 [file] [log] [blame]
/*
* Copyright (c) 1998, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// 06/20/2008-1.0 Guy Pelletier
// - 232975: Failure when attribute type is generic
// 01/28/2009-2.0 Guy Pelletier
// - 248293: JPA 2.0 Element Collections (part 1)
// 04/03/2009-2.0 Guy Pelletier
// - 241413: JPA 2.0 Add EclipseLink support for Map type attributes
// 06/02/2009-2.0 Guy Pelletier
// - 278768: JPA 2.0 Association Override Join Table
package org.eclipse.persistence.testing.models.jpa.xml.inherited;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
public class ExpertBeerConsumer extends RatedBeerConsumer<String, String, String> {
private Map<Date, String> quotes;
//private Collection<byte[]> audio;
private Map<Birthday, String> celebrations;
public ExpertBeerConsumer() {
super();
//audio = new ArrayList<byte[]>();
quotes = new HashMap<Date, String>();
celebrations = new HashMap<Birthday, String>();
}
public void addCelebration(Birthday birthday, String details) {
celebrations.put(birthday, details);
}
public void addCommittee(Committee committee) {
getCommittees().add(committee);
committee.addExpertBeerConsumer(this);
}
// Commenting out this mapping until bug 272298 is resolved.
//@ElementCollection
//@Lob
//public Collection<byte[]> getAudio() {
// return audio;
//}
public Map<Birthday, String> getCelebrations() {
return celebrations;
}
public Map<Date, String> getQuotes() {
return quotes;
}
//public void setAudio(Collection<byte[]> audio) {
// this.audio = audio;
//}
public void setCelebrations(Map<Birthday, String> celebrations) {
this.celebrations = celebrations;
}
public void setQuotes(Map<Date, String> quotes) {
this.quotes = quotes;
}
}