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

Hibernate example source code file (Salesperson.java)

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

date, date, department, department, hashset, long, long, salesperson, set, string, string, util

The Hibernate Salesperson.java source code

// $Id: Salesperson.java 4448 2004-08-28 02:29:05Z steveebersole $
package org.hibernate.test.filter;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;

/**
 * Implementation of Salesperson.
 * 
 * @author Steve
 */
public class Salesperson {
	private Long id;
	private String name;
	private String region;
	private Date hireDate;
	private Department department;
	private Set orders = new HashSet();

	public Long getId() {
		return id;
	}

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

	public String getName() {
		return name;
	}

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

	public String getRegion() {
		return region;
	}

	public void setRegion(String region) {
		this.region = region;
	}

	public Set getOrders() {
		return orders;
	}

	public void setOrders(Set orders) {
		this.orders = orders;
	}

	public Date getHireDate() {
		return hireDate;
	}

	public void setHireDate(Date hireDate) {
		this.hireDate = hireDate;
	}

	public Department getDepartment() {
		return department;
	}

	public void setDepartment(Department department) {
		this.department = department;
	}
}

Other Hibernate examples (source code examples)

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