package businessLogic; import java.rmi.RemoteException; import java.rmi.server.UnicastRemoteObject; import javax.mail.MessagingException; import common.AccountInterface; import dataAccess.DB4oManager; import domain.Account; public class AccountManager extends UnicastRemoteObject implements AccountInterface { /** * */ private static final long serialVersionUID = 1L; private DB4oManager dbMngr; public AccountManager() throws RemoteException { try { dbMngr = DB4oManager.getInstance(); } catch (Exception e) { e.printStackTrace(); } } public boolean addAccount(Account ac) throws RemoteException { if(this.dbMngr.addAccount(ac)){ try { MailManager.getInstance().Send(ac.getOwner().getMailAccount(), "Entered into the system", "Congratulations"); } catch (MessagingException e) { e.printStackTrace(); } return true; } return false; } public boolean removeAccount(Account ac)throws RemoteException { if(this.dbMngr.removeAccount(ac)) return true; return false; } }