FileDocCategorySizeDatePackage
UserSession.javaAPI DocExample607Thu Dec 04 08:19:26 GMT 2003org.springframework.samples.jpetstore.web.spring

UserSession

public class UserSession extends Object
author
Juergen Hoeller
since
30.11.2003

Fields Summary
private org.springframework.samples.jpetstore.domain.Account
account
private org.springframework.util.PagedListHolder
myList
Constructors Summary
public UserSession(org.springframework.samples.jpetstore.domain.Account account)

		this.account = account;
	
Methods Summary
public org.springframework.samples.jpetstore.domain.AccountgetAccount()

		return account;
	
public org.springframework.util.PagedListHoldergetMyList()

		return myList;
	
public voidsetMyList(org.springframework.util.PagedListHolder myList)

		this.myList = myList;