All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wallride.domain.BlogLanguage Maven / Gradle / Ivy

/*
 * Copyright 2014 Tagbangers, Inc.
 *
 * 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.wallride.domain;

import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.hibernate.annotations.DynamicInsert;
import org.hibernate.annotations.DynamicUpdate;
import org.hibernate.search.annotations.Field;

import javax.persistence.*;

@Entity
@Table(name = "blog_language", uniqueConstraints = @UniqueConstraint(columnNames = {"blog_id", "language"}))
@DynamicInsert
@DynamicUpdate
public class BlogLanguage extends DomainObject {

	@Id
	@GeneratedValue(strategy= GenerationType.IDENTITY)
	private long id;

	@ManyToOne(optional = false)
	private Blog blog;

	@Column(length = 3, nullable = false)
	@Field
	private String language;

	@Lob
	@Column(length = 300, nullable = false)
	@Field
	private String title;

	public Long getId() {
		return id;
	}

	public void setId(long id) {
		this.id = id;
	}

	public Blog getBlog() {
		return blog;
	}

	public void setBlog(Blog blog) {
		this.blog = blog;
	}

	public String getLanguage() {
		return language;
	}

	public void setLanguage(String language) {
		this.language = language;
	}

	public String getTitle() {
		return title;
	}

	public void setTitle(String title) {
		this.title = title;
	}

	@Override
	public String print() {
		return getBlog().getCode() + "-" + getLanguage();
	}

	@Override
	public String toString() {
		return getBlog().getCode() + "-" + getLanguage();
	}

	@Override
	public boolean equals(Object other) {
		if (this == other) return true;
		if (other == null || !(other instanceof BlogLanguage)) return false;
		BlogLanguage that = (BlogLanguage) other;
		return new EqualsBuilder()
				.append(getId(), that.getId())
				.append(getLanguage(), that.getLanguage())
				.isEquals();
	}

	@Override
	public int hashCode() {
		return new HashCodeBuilder()
				.append(getId())
				.append(getLanguage())
				.toHashCode();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy