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

Hibernate example source code file (DefaultValueComponent1.java)

This example Hibernate source code file (DefaultValueComponent1.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

comp1, defaultvaluecomponent1, defaultvaluecomponent1, defaultvaluecomponent2, defaultvaluecomponent2, embedded, embedded, string, string

The Hibernate DefaultValueComponent1.java source code

package org.hibernate.envers.test.entities.components;
import javax.persistence.Embedded;

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

	private String str1;

	@Embedded
	private DefaultValueComponent2 comp2 = new DefaultValueComponent2();

	public static final DefaultValueComponent1 of(String str1,
			DefaultValueComponent2 comp2) {
		DefaultValueComponent1 instance = new DefaultValueComponent1();
		instance.setStr1(str1);
		instance.setComp2(comp2);
		return instance;
	}

	public String getStr1() {
		return str1;
	}

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

	public DefaultValueComponent2 getComp2() {
		return comp2;
	}

	public void setComp2(DefaultValueComponent2 comp2) {
		this.comp2 = comp2;
	}

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

		DefaultValueComponent1 that = (DefaultValueComponent1) o;

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

		return true;
	}

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

	public String toString() {
		return "Comp1(str1 = " + str1 + ", comp2 = " + comp2 + ")";
	}

}

Other Hibernate examples (source code examples)

Here is a short list of links related to this Hibernate DefaultValueComponent1.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.