1 //$Id: Salesperson.java,v 1.1 2005/06/12 22:02:24 oneovthafew Exp $2 package org.hibernate.test.ondelete;3 4 import java.util.HashSet ;5 import java.util.Set ;6 7 public class Salesperson extends Employee {8 private Set customers = new HashSet ();9 10 public Set getCustomers() {11 return customers;12 }13 14 public void setCustomers(Set customers) {15 this.customers = customers;16 }17 18 }19