FileDocCategorySizeDatePackage
Person.javaAPI DocHibernate 3.2.51550Thu Dec 07 14:53:42 GMT 2006org.hibernate.test.propertyref.basic

Person

public class Person extends Object
author
gavin

Fields Summary
private Long
id
private String
name
private Address
address
private String
userId
private Set
accounts
private List
systems
Constructors Summary
Methods Summary
public java.util.SetgetAccounts()

return
Returns the accounts.

		return accounts;
	
public AddressgetAddress()

return
Returns the address.

		return address;
	
public java.lang.LonggetId()

return
Returns the id.

		return id;
	
public java.lang.StringgetName()

return
Returns the name.

		return name;
	
public java.util.ListgetSystems()

		return systems;
	
public java.lang.StringgetUserId()

return
Returns the userId.


	    	 
	   
		return userId;
	
public voidsetAccounts(java.util.Set accounts)

param
accounts The accounts to set.

		this.accounts = accounts;
	
public voidsetAddress(Address address)

param
address The address to set.

		this.address = address;
	
public voidsetId(java.lang.Long id)

param
id The id to set.

		this.id = id;
	
public voidsetName(java.lang.String name)

param
name The name to set.

		this.name = name;
	
public voidsetSystems(java.util.List systems)

		this.systems = systems;
	
public voidsetUserId(java.lang.String userId)

param
userId The userId to set.

		this.userId = userId;