org.optaplanner.openshift.employeerostering.shared.employee.Employee Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2016 Red Hat, Inc. and/or its affiliates.
*
* 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 org.optaplanner.openshift.employeerostering.shared.employee;
import java.util.Collection;
import java.util.HashSet;
import java.util.Set;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.ManyToMany;
import javax.persistence.NamedQueries;
import javax.persistence.NamedQuery;
import javax.persistence.Table;
import javax.persistence.UniqueConstraint;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size;
import org.optaplanner.openshift.employeerostering.shared.common.AbstractPersistable;
import org.optaplanner.openshift.employeerostering.shared.skill.Skill;
@Entity
@NamedQueries({
@NamedQuery(name = "Employee.findAll",
query = "select e from Employee e" +
" where e.tenantId = :tenantId" +
" order by LOWER(e.name)"),
})
@Table(uniqueConstraints = @UniqueConstraint(columnNames = {"tenantId", "name"}))
public class Employee extends AbstractPersistable {
@NotNull
@Size(min = 1, max = 120)
private String name;
//@JsonManagedReference
@NotNull
@ManyToMany(fetch = FetchType.EAGER) // TODO Eager fetching bloats the EmployeeAvailability.findAll query
private Set skillProficiencySet;
@SuppressWarnings("unused")
public Employee() {}
public Employee(Integer tenantId, String name) {
super(tenantId);
this.name = name;
skillProficiencySet = new HashSet<>(2);
}
public boolean hasSkill(Skill skill) {
return skillProficiencySet.contains(skill);
}
public boolean hasSkills(Collection skills) {
return skillProficiencySet.containsAll(skills);
}
@Override
public String toString() {
return name;
}
// ************************************************************************
// Simple getters and setters
// ************************************************************************
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Set getSkillProficiencySet() {
return skillProficiencySet;
}
public void setSkillProficiencySet(Set skillProficiencySet) {
this.skillProficiencySet = skillProficiencySet;
}
@Override
public boolean equals(Object o) {
if (o instanceof Employee) {
Employee other = (Employee) o;
return this.name.equals(other.getName()) && this.skillProficiencySet.equals(other.getSkillProficiencySet());
} else {
return false;
}
}
@Override
public int hashCode() {
return (31 * name.hashCode()) ^ skillProficiencySet.hashCode();
}
}