blob: 9c0964918e8cb694b84a4b5f71c3744fc681c1d1 [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:
// dminsky - initial implementation
package org.eclipse.persistence.testing.models.jpa.advanced;
import java.util.HashSet;
import java.util.Set;
import jakarta.persistence.CollectionTable;
import jakarta.persistence.Column;
import jakarta.persistence.ElementCollection;
import jakarta.persistence.Entity;
import jakarta.persistence.FetchType;
import jakarta.persistence.Id;
import jakarta.persistence.JoinColumn;
import jakarta.persistence.Table;
@Entity
@Table(name="CMP3_TODOLIST")
public class ToDoList {
@Id
protected int id;
protected String name;
@ElementCollection(fetch=FetchType.LAZY, targetClass=String.class)
@CollectionTable(
name = "CMP3_TODOLISTITEM",
joinColumns = { @JoinColumn(name = "TODOLIST_ID") })
@Column(name = "ITEM_TEXT")
protected Set<String> items;
public ToDoList() {
this(0, "");
}
public ToDoList(int id, String name) {
super();
setId(id);
setName(name);
setItems(new HashSet<String>());
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Set<String> getItems() {
return items;
}
public void setItems(Set<String> items) {
this.items = items;
}
public void addItem(String item) {
if (!getItems().contains(item)) {
getItems().add(item);
}
}
public void removeItem(String item) {
if (getItems().contains(item)) {
getItems().remove(item);
}
}
}