FileDocCategorySizeDatePackage
Account.javaAPI DocHibernate 3.2.5874Sat Sep 25 19:39:44 BST 2004org.hibernate.test.cuk

Account

public class Account extends Object implements Serializable
author
Gavin King

Fields Summary
private String
accountId
private Person
user
private char
type
Constructors Summary
Methods Summary
public java.lang.StringgetAccountId()

return
Returns the accountId.

		return accountId;
	
public chargetType()

return
Returns the type.

		return type;
	
public PersongetUser()

return
Returns the user.

		return user;
	
public voidsetAccountId(java.lang.String accountId)

param
accountId The accountId to set.

		this.accountId = accountId;
	
public voidsetType(char type)

param
type The type to set.

		this.type = type;
	
public voidsetUser(Person user)

param
user The user to set.

		this.user = user;