/*
* Created on Jul 22, 2004
*
*/
package net.sourceforge.fenixedu.domain;
import java.util.ArrayList;
import java.util.List;
import net.sourceforge.fenixedu.domain.exceptions.DomainException;
import net.sourceforge.fenixedu.domain.transactions.InsuranceTransaction;
import net.sourceforge.fenixedu.domain.transactions.PaymentTransaction;
import net.sourceforge.fenixedu.domain.transactions.Transaction;
/**
* @author Shezad Anavarali
* @author Nadir Tarmahomed
*/
public class PersonAccount extends PersonAccount_Base {
public PersonAccount() {
super();
setRootDomainObject(RootDomainObject.getInstance());
}
public PersonAccount(Person person) {
this();
setPerson(person);
setBalance(Double.valueOf(0));
}
public List getPaymentTransactions() {
List result = new ArrayList();
for (Transaction transaction : this.getTransactions()) {
if (transaction instanceof PaymentTransaction) {
result.add(transaction);
}
}
return result;
}
public List getInsuranceTransactions() {
List result = new ArrayList();
for (Transaction transaction : this.getTransactions()) {
if (transaction instanceof InsuranceTransaction) {
result.add(transaction);
}
}
return result;
}
public void delete() {
if (getTransactionsCount() > 0) {
throw new DomainException("error.person.cannot.be.deleted");
}
removeRootDomainObject();
removePerson();
super.deleteDomainObject();
}
}