alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Hibernate example source code file (DefaultValueComponent2.java)

This example Hibernate source code file (DefaultValueComponent2.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Hibernate tags/keywords

comp2, comp2, defaultvaluecomponent2, defaultvaluecomponent2, string, string

The Hibernate DefaultValueComponent2.java source code

package org.hibernate.envers.test.entities.components;


/**
 * 
 * @author Erik-Berndt Scheper
 * 
 */
public class DefaultValueComponent2 {

	private String str1 = "defaultValue";

	private String str2;

	public static final DefaultValueComponent2 of(String str1, String str2) {
		DefaultValueComponent2 instance = new DefaultValueComponent2();
		instance.setStr1(str1);
		instance.setStr2(str2);
		return instance;
	}

	public String getStr2() {
		return str2;
	}

	public void setStr2(String str2) {
		this.str2 = str2;
	}

	public String getStr1() {
		return str1;
	}

	public void setStr1(String str1) {
		this.str1 = str1;
	}

	public boolean equals(Object o) {
		if (this == o)
			return true;
		if (!(o instanceof DefaultValueComponent2))
			return false;

		DefaultValueComponent2 that = (DefaultValueComponent2) o;

		if (str1 != null ? !str1.equals(that.str1) : that.str1 != null)
			return false;
		if (str2 != null ? !str2.equals(that.str2) : that.str2 != null)
			return false;

		return true;
	}

	public int hashCode() {
		int result;
		result = (str1 != null ? str1.hashCode() : 0);
		result = 31 * result + (str2 != null ? str2.hashCode() : 0);
		return result;
	}

	public String toString() {
		return "Comp2(str1 = " + str1 + ", str2 = " + str2 + ")";
	}

}

Other Hibernate examples (source code examples)

Here is a short list of links related to this Hibernate DefaultValueComponent2.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.