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

AccountForm.java

package org.springframework.samples.jpetstore.web.spring;

import org.springframework.samples.jpetstore.domain.Account;

/**
 * @author Juergen Hoeller
 * @since 01.12.2003
 */
public class AccountForm {

	private Account account;

	private boolean newAccount;

	private String repeatedPassword;

	public AccountForm(Account account) {
		this.account = account;
		this.newAccount = false;
	}

	public AccountForm() {
		this.account = new Account();
		this.newAccount = true;
	}

	public Account getAccount() {
		return account;
	}

	public boolean isNewAccount() {
		return newAccount;
	}

	public void setRepeatedPassword(String repeatedPassword) {
		this.repeatedPassword = repeatedPassword;
	}

	public String getRepeatedPassword() {
		return repeatedPassword;
	}

}