/* * Copyright 2011 Thingtrack, S.L. * * 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 com.thingtrack.konekti.domain; /* * #%L * Konekti Domain Layer * $Id:$ * $HeadURL:$ * %% * Copyright (C) 2010 - 2014 Thingtrack s.l. * %% * 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. * #L% */ import java.io.Serializable; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import javax.validation.constraints.NotNull; import javax.validation.constraints.Size; /** * Entity class, * <p> * Represents employe agent types * <p> * @author Thingtrack S.L. * */ @SuppressWarnings("serial") @Entity @Table(name="EMPLOYEE_AGENT_TYPE", uniqueConstraints=@UniqueConstraint(columnNames={"NAME", "ORGANIZATION_ID"})) public class EmployeeAgentType implements Serializable { /** * unique identifier */ @Id @Column(name="EMPLOYEE_AGENT_TYPE_ID") @GeneratedValue(strategy=GenerationType.IDENTITY) private Integer employeeAgentTypeId; /** * Unique name, not null */ @Column(name="NAME", nullable=false, length=64) @Size(min=1, max=64) @NotNull private String name; /** * Description */ @Column(name="DESCRIPTION", length=512) @Size(min=1, max=512) private String description; @ManyToOne @JoinColumn(name="ORGANIZATION_ID", nullable=false) private Organization organization; /** * @param employeeAgentTypeId the employeeAgentTypeId to set */ public void setEmployeeAgentTypeId(Integer employeeAgentTypeId) { this.employeeAgentTypeId = employeeAgentTypeId; } /** * @return the employeeAgentTypeId */ public Integer getEmployeeAgentTypeId() { return employeeAgentTypeId; } /** * @param description the description to set */ public void setDescription(String description) { this.description = description; } /** * @return the description */ public String getDescription() { return description; } /** * @param name the name to set */ public void setName(String name) { this.name = name; } /** * @return the name */ public String getName() { return name; } /* (non-Javadoc) * @see java.lang.Object#hashCode() */ @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((employeeAgentTypeId == null) ? 0 : employeeAgentTypeId .hashCode()); result = prime * result + ((name == null) ? 0 : name.hashCode()); return result; } /* (non-Javadoc) * @see java.lang.Object#equals(java.lang.Object) */ @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (!(obj instanceof EmployeeAgentType)) return false; EmployeeAgentType other = (EmployeeAgentType) obj; if (employeeAgentTypeId == null) { if (other.employeeAgentTypeId != null) return false; } else if (!employeeAgentTypeId.equals(other.employeeAgentTypeId)) return false; if (name == null) { if (other.name != null) return false; } else if (!name.equals(other.name)) return false; return true; } /* (non-Javadoc) * @see java.lang.Object#toString() */ @Override public String toString() { return "EmployeeAgentType [employeeAgentTypeId=" + employeeAgentTypeId + ", name=" + name + ", description=" + description + "]"; } public Organization getOrganization() { return organization; } public void setOrganization(Organization organization) { this.organization = organization; } }