/* * 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; /** * Entity class * <p> * Represents groups of clients * <p> * @author Thingtrack S.L. * */ @SuppressWarnings("serial") @Entity @Table(name="CLIENT_GROUP", uniqueConstraints=@UniqueConstraint(columnNames={"NAME", "ORGANIZATION_ID"})) public class ClientGroup implements Serializable { /** * Unique identifier */ @Id @Column(name="CLIENT_GROUP_ID") @GeneratedValue(strategy=GenerationType.IDENTITY) private Integer clientGroupId; /** * Unique name, not null */ @Column(name="NAME", nullable=false, length=64) private String name; /** * Descripcion */ @Column(name="DESCRIPTION", length=512) private String description; @ManyToOne @JoinColumn(name = "ORGANIZATION_ID", nullable = false) private Organization organization; /** * @param clientGroupId the clientGroupId to set */ public void setClientGroupId(Integer clientGroupId) { this.clientGroupId = clientGroupId; } /** * @return the clientGroupId */ public Integer getClientGroupId() { return clientGroupId; } /** * @param name the name to set */ public void setName(String name) { this.name = name; } /** * @return the name */ public String getName() { return name; } /** * @param description the description to set */ public void setDescription(String description) { this.description = description; } /** * @return the description */ public String getDescription() { return description; } /* (non-Javadoc) * @see java.lang.Object#hashCode() */ @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((clientGroupId == null) ? 0 : clientGroupId.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 ClientGroup)) return false; ClientGroup other = (ClientGroup) obj; if (clientGroupId == null) { if (other.clientGroupId != null) return false; } else if (!clientGroupId.equals(other.clientGroupId)) 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 "ClientGroup [clientGroupId=" + clientGroupId + ", name=" + name + ", description=" + description + "]"; } public Organization getOrganization() { return organization; } public void setOrganization(Organization organization) { this.organization = organization; } }