/* * This file is part of LibrePlan * * Copyright (C) 2009-2010 Fundación para o Fomento da Calidade Industrial e * Desenvolvemento Tecnolóxico de Galicia * Copyright (C) 2010-2011 Igalia, S.L. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.libreplan.business.labels.entities; import java.util.Collections; import java.util.HashSet; import java.util.Set; import org.apache.commons.lang3.StringUtils; import org.hibernate.validator.constraints.NotEmpty; import javax.validation.constraints.NotNull; import org.libreplan.business.common.IntegrationEntity; import org.libreplan.business.common.Registry; import org.libreplan.business.labels.daos.ILabelDAO; import org.libreplan.business.orders.entities.OrderElement; /** * Label entity * * @author Diego Pino Garcia<dpino@igalia.com> * */ public class Label extends IntegrationEntity implements Comparable<Label> { @NotEmpty(message = "name not specified") private String name; @NotNull(message = "type not specified") private LabelType type; private Set<OrderElement> orderElements = new HashSet<OrderElement>(); // Default constructor, needed by Hibernate protected Label() { } public static Label create(String name) { return create(new Label(name)); } public static Label create(String code, String name) { return create(new Label(name), code); } protected Label(String name) { this.name = name; } public String getName() { return name; } public void setName(String name) { this.name = name; } public LabelType getType() { return type; } public void setType(LabelType type) { this.type = type; } public Set<OrderElement> getOrderElements() { return Collections.unmodifiableSet(orderElements); } public boolean isEqualTo(Label label) { if ((this.getName() != null) && (label.getName() != null) && (this.getType() != null) && (label.getType() != null) && (this.getType().getName() != null) && (label.getType().getName() != null) && this.getName().equals(label.getName()) && this.getType().getName().equals(label.getType().getName())) { return true; } return false; } public String toString() { return name; } @Override protected ILabelDAO getIntegrationEntityDAO() { return Registry.getLabelDAO(); } public void updateUnvalidated(String name) { if (!StringUtils.isBlank(name)) { this.name = name; } } @Override public void setCodeAutogenerated(Boolean codeAutogenerated) { // do nothing } @Override public Boolean isCodeAutogenerated() { return getType() != null ? getType().isCodeAutogenerated() : false; } private String getTypeAndName() { return String.format("%s :: %s", type.getName(), name); } @Override public int compareTo(Label o) { return getTypeAndName().compareToIgnoreCase(o.getTypeAndName()); } public String getFinderPattern() { return String.format("%s ( %s )", name, type.getName()); } }