/* * Copyright (C) 2009-2010 Open Wide * Contact: contact@openwide.fr * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package fr.openwide.core.test.business.person.model; import java.util.Date; import java.util.LinkedList; import java.util.List; import java.util.Map; import javax.persistence.ElementCollection; import javax.persistence.Entity; import javax.persistence.EnumType; import javax.persistence.Enumerated; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.Inheritance; import javax.persistence.InheritanceType; import javax.persistence.JoinColumn; import javax.persistence.JoinTable; import javax.persistence.ManyToMany; import javax.persistence.ManyToOne; import javax.persistence.MapKeyEnumerated; import javax.persistence.OneToMany; import org.hibernate.search.annotations.DocumentId; import org.hibernate.search.annotations.Field; import org.hibernate.search.annotations.Indexed; import fr.openwide.core.jpa.business.generic.model.GenericEntity; import fr.openwide.core.test.business.company.model.Company; import fr.openwide.core.test.business.project.model.Project; import fr.openwide.core.test.metamodel.TestMetaModel; @Entity @Indexed @Inheritance(strategy = InheritanceType.JOINED) public class Person extends GenericEntity<Long, Person> { private static final long serialVersionUID = -2471930493134125282L; @Id @DocumentId @GeneratedValue private Long id; @Field private String firstName; @Field private String lastName; @ManyToOne private Company company; @ManyToMany @JoinTable(joinColumns=@JoinColumn(name="persons_id"), inverseJoinColumns=@JoinColumn(name="project_id")) private List<Project> workedProjects = new LinkedList<Project>(); private Date creationDate; /** * cf {@link TestMetaModel} */ private PersonSubTypeA otherPerson; /** * cf {@link TestMetaModel} */ private StubEnumeration enumeration; /** * cf {@link TestMetaModel} */ @Enumerated(EnumType.STRING) private StubEnumeration enumerationString; /** * cf {@link TestMetaModel} */ @OneToMany private Map<StubEnumeration, PersonSubTypeA> enumMap; /** * cf {@link TestMetaModel} */ @OneToMany @MapKeyEnumerated(EnumType.STRING) private Map<StubEnumeration, PersonSubTypeA> enumMapString; /** * cf {@link TestMetaModel} */ @ElementCollection private List<StubEnumeration> enumList; /** * cf {@link TestMetaModel} */ @ElementCollection @Enumerated(EnumType.STRING) private List<StubEnumeration> enumListString; /** * cf {@link TestMetaModel} */ @ElementCollection private Map<Long, StubEnumeration> enumMapValue; /** * cf {@link TestMetaModel} */ @ElementCollection @Enumerated(EnumType.STRING) private Map<Long, StubEnumeration> enumMapValueString; public Person() { } public Person(String firstName, String lastName) { this.firstName = firstName; this.lastName = lastName; } @Override public Long getId() { return id; } @Override public void setId(Long id) { this.id = id; } public String getFirstName() { return firstName; } public void setFirstName(String firstName) { this.firstName = firstName; } public String getLastName() { return lastName; } public void setLastName(String lastName) { this.lastName = lastName; } public Company getCompany() { return company; } public void setCompany(Company company) { this.company = company; } public List<Project> getWorkedProjects() { return workedProjects; } public void setWorkedProjects(List<Project> workedProjects) { this.workedProjects = workedProjects; } public void addWorkedProjects(Project project) { this.workedProjects.add(project); project.getTeam().add(this); } public void removeWorkedProjects(Project project) { this.workedProjects.remove(project); project.getTeam().remove(this); } public Date getCreationDate() { return creationDate; } public void setCreationDate(Date creationDate) { this.creationDate = creationDate; } public PersonSubTypeA getOtherPerson() { return otherPerson; } public void setOtherPerson(PersonSubTypeA otherPerson) { this.otherPerson = otherPerson; } public StubEnumeration getEnumeration() { return enumeration; } public void setEnumeration(StubEnumeration enumeration) { this.enumeration = enumeration; } public Map<StubEnumeration, PersonSubTypeA> getEnumMap() { return enumMap; } public void setEnumMap(Map<StubEnumeration, PersonSubTypeA> enumMap) { this.enumMap = enumMap; } @Override public String getNameForToString() { return getDisplayName(); } @Override public String getDisplayName() { return getLastName() + " " + getFirstName(); } }