/** * Copyright © 2016-2017 The Thingsboard Authors * * 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.thingsboard.server.dao.model; import static org.thingsboard.server.dao.model.ModelConstants.ADDRESS2_PROPERTY; import static org.thingsboard.server.dao.model.ModelConstants.ADDRESS_PROPERTY; import static org.thingsboard.server.dao.model.ModelConstants.CITY_PROPERTY; import static org.thingsboard.server.dao.model.ModelConstants.COUNTRY_PROPERTY; import static org.thingsboard.server.dao.model.ModelConstants.EMAIL_PROPERTY; import static org.thingsboard.server.dao.model.ModelConstants.ID_PROPERTY; import static org.thingsboard.server.dao.model.ModelConstants.PHONE_PROPERTY; import static org.thingsboard.server.dao.model.ModelConstants.STATE_PROPERTY; import static org.thingsboard.server.dao.model.ModelConstants.TENANT_ADDITIONAL_INFO_PROPERTY; import static org.thingsboard.server.dao.model.ModelConstants.TENANT_COLUMN_FAMILY_NAME; import static org.thingsboard.server.dao.model.ModelConstants.TENANT_REGION_PROPERTY; import static org.thingsboard.server.dao.model.ModelConstants.TENANT_TITLE_PROPERTY; import static org.thingsboard.server.dao.model.ModelConstants.ZIP_PROPERTY; import static org.thingsboard.server.dao.model.ModelConstants.SEARCH_TEXT_PROPERTY; import java.util.UUID; import org.thingsboard.server.common.data.Tenant; import org.thingsboard.server.common.data.id.TenantId; import org.thingsboard.server.dao.model.type.JsonCodec; import com.datastax.driver.core.utils.UUIDs; import com.datastax.driver.mapping.annotations.Column; import com.datastax.driver.mapping.annotations.PartitionKey; import com.datastax.driver.mapping.annotations.Table; import com.datastax.driver.mapping.annotations.Transient; import com.fasterxml.jackson.databind.JsonNode; @Table(name = TENANT_COLUMN_FAMILY_NAME) public final class TenantEntity implements SearchTextEntity<Tenant> { @Transient private static final long serialVersionUID = -6198635547142409206L; @PartitionKey(value = 0) @Column(name = ID_PROPERTY) private UUID id; @Column(name = TENANT_TITLE_PROPERTY) private String title; @Column(name = SEARCH_TEXT_PROPERTY) private String searchText; @Column(name = TENANT_REGION_PROPERTY) private String region; @Column(name = COUNTRY_PROPERTY) private String country; @Column(name = STATE_PROPERTY) private String state; @Column(name = CITY_PROPERTY) private String city; @Column(name = ADDRESS_PROPERTY) private String address; @Column(name = ADDRESS2_PROPERTY) private String address2; @Column(name = ZIP_PROPERTY) private String zip; @Column(name = PHONE_PROPERTY) private String phone; @Column(name = EMAIL_PROPERTY) private String email; @Column(name = TENANT_ADDITIONAL_INFO_PROPERTY, codec = JsonCodec.class) private JsonNode additionalInfo; public TenantEntity() { super(); } public TenantEntity(Tenant tenant) { if (tenant.getId() != null) { this.id = tenant.getId().getId(); } this.title = tenant.getTitle(); this.region = tenant.getRegion(); this.country = tenant.getCountry(); this.state = tenant.getState(); this.city = tenant.getCity(); this.address = tenant.getAddress(); this.address2 = tenant.getAddress2(); this.zip = tenant.getZip(); this.phone = tenant.getPhone(); this.email = tenant.getEmail(); this.additionalInfo = tenant.getAdditionalInfo(); } public UUID getId() { return id; } public void setId(UUID id) { this.id = id; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getRegion() { return region; } public void setRegion(String region) { this.region = region; } public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } public String getState() { return state; } public void setState(String state) { this.state = state; } public String getCity() { return city; } public void setCity(String city) { this.city = city; } public String getAddress() { return address; } public void setAddress(String address) { this.address = address; } public String getAddress2() { return address2; } public void setAddress2(String address2) { this.address2 = address2; } public String getZip() { return zip; } public void setZip(String zip) { this.zip = zip; } public String getPhone() { return phone; } public void setPhone(String phone) { this.phone = phone; } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } public JsonNode getAdditionalInfo() { return additionalInfo; } public void setAdditionalInfo(JsonNode additionalInfo) { this.additionalInfo = additionalInfo; } @Override public String getSearchTextSource() { return title; } @Override public void setSearchText(String searchText) { this.searchText = searchText; } public String getSearchText() { return searchText; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((additionalInfo == null) ? 0 : additionalInfo.hashCode()); result = prime * result + ((address == null) ? 0 : address.hashCode()); result = prime * result + ((address2 == null) ? 0 : address2.hashCode()); result = prime * result + ((city == null) ? 0 : city.hashCode()); result = prime * result + ((country == null) ? 0 : country.hashCode()); result = prime * result + ((email == null) ? 0 : email.hashCode()); result = prime * result + ((id == null) ? 0 : id.hashCode()); result = prime * result + ((phone == null) ? 0 : phone.hashCode()); result = prime * result + ((region == null) ? 0 : region.hashCode()); result = prime * result + ((state == null) ? 0 : state.hashCode()); result = prime * result + ((title == null) ? 0 : title.hashCode()); result = prime * result + ((zip == null) ? 0 : zip.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; TenantEntity other = (TenantEntity) obj; if (additionalInfo == null) { if (other.additionalInfo != null) return false; } else if (!additionalInfo.equals(other.additionalInfo)) return false; if (address == null) { if (other.address != null) return false; } else if (!address.equals(other.address)) return false; if (address2 == null) { if (other.address2 != null) return false; } else if (!address2.equals(other.address2)) return false; if (city == null) { if (other.city != null) return false; } else if (!city.equals(other.city)) return false; if (country == null) { if (other.country != null) return false; } else if (!country.equals(other.country)) return false; if (email == null) { if (other.email != null) return false; } else if (!email.equals(other.email)) return false; if (id == null) { if (other.id != null) return false; } else if (!id.equals(other.id)) return false; if (phone == null) { if (other.phone != null) return false; } else if (!phone.equals(other.phone)) return false; if (region == null) { if (other.region != null) return false; } else if (!region.equals(other.region)) return false; if (state == null) { if (other.state != null) return false; } else if (!state.equals(other.state)) return false; if (title == null) { if (other.title != null) return false; } else if (!title.equals(other.title)) return false; if (zip == null) { if (other.zip != null) return false; } else if (!zip.equals(other.zip)) return false; return true; } @Override public String toString() { StringBuilder builder = new StringBuilder(); builder.append("TenantEntity [id="); builder.append(id); builder.append(", title="); builder.append(title); builder.append(", region="); builder.append(region); builder.append(", country="); builder.append(country); builder.append(", state="); builder.append(state); builder.append(", city="); builder.append(city); builder.append(", address="); builder.append(address); builder.append(", address2="); builder.append(address2); builder.append(", zip="); builder.append(zip); builder.append(", phone="); builder.append(phone); builder.append(", email="); builder.append(email); builder.append(", additionalInfo="); builder.append(additionalInfo); builder.append("]"); return builder.toString(); } @Override public Tenant toData() { Tenant tenant = new Tenant(new TenantId(id)); tenant.setCreatedTime(UUIDs.unixTimestamp(id)); tenant.setTitle(title); tenant.setRegion(region); tenant.setCountry(country); tenant.setState(state); tenant.setCity(city); tenant.setAddress(address); tenant.setAddress2(address2); tenant.setZip(zip); tenant.setPhone(phone); tenant.setEmail(email); tenant.setAdditionalInfo(additionalInfo); return tenant; } }