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

Hibernate example source code file (DeviceGroupConfig.java)

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

baseentity, baseentity, column, devicegroupconfig, devicegroupconfig, entity, entity, string, string, table

The Hibernate DeviceGroupConfig.java source code

package org.hibernate.test.annotations.onetoone.hhh4851;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;

/**
 * A group of {@link LogicalTerminal logical terminals}. Used to group them for Configuration purpose. That's why a
 * LogicalTerminal can only have one TerminalGroup.
 */
@Entity
@Table
public class DeviceGroupConfig extends BaseEntity {

	private String name = null;

	public DeviceGroupConfig() {

	}

	/**
	 * Not unique, because we could use the same name in two different organizations.
	 *
	 * @return
	 */
	@Column(nullable = false)
	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

}

Other Hibernate examples (source code examples)

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