Git Repository Public Repository

RRRRHHHH_Code

URLs

Copy to Clipboard
 
e2ae30e55bc2a997923463dd2a1274c67fdc73a6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package businessLogic;

import java.rmi.RemoteException;
import java.util.Vector;

import dataAccess.DB4oManager;
import domain.Owner;

public class OwnerManager implements OwnerManagerInterface {
	DB4oManager dbMngr;

	public OwnerManager() {
		try {
			dbMngr = DB4oManager.getInstance();
		} catch (Exception e) {

			e.printStackTrace();
		}
	}

	/**
	 * This method existing  owners 
	 * 
	 */
	public Vector<Owner> getOwners() throws RemoteException,
			Exception {
		
		
		return dbMngr.getOwners();
	}

	
}

Commits for RRRRHHHH_CoderuralHouses/src/businessLogic/OwnerManager.java

Diff revisions: vs.
Revision Author Commited Message
e2ae30 ... Diff Diff Eneko Pinzolas Murua Tue 14 Apr, 2015 15:07:35 +0000

imports leaned

e16868 ... Eneko Pinzolas Murua Mon 09 Mar, 2015 13:02:33 +0000

deleted aplicationFacade and imported it’s functions to specific business logics.