org.optaplanner.openshift.employeerostering.shared.skill.Skill 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.skill;
import javax.persistence.Entity;
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;
@Entity
@NamedQueries({
@NamedQuery(name = "Skill.findAll",
query = "select s from Skill s" +
" where s.tenantId = :tenantId" +
" order by LOWER(s.name)"),
})
@Table(uniqueConstraints = @UniqueConstraint(columnNames = {"tenantId", "name"}))
public class Skill extends AbstractPersistable {
@NotNull
@Size(min = 1, max = 120)
private String name;
@SuppressWarnings("unused")
public Skill() {}
public Skill(Integer tenantId, String name) {
super(tenantId);
this.name = name;
}
@Override
public String toString() {
return name;
}
// ************************************************************************
// Simple getters and setters
// ************************************************************************
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}