Git Repository Public Repository

RRRRHHHH_Code

URLs

Copy to Clipboard
 
4f8bcc7fa6ac7640915ac3aa5e115b6d37c08a86
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
34
35
36
37
38
39
40
41
package businessLogic;

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

import common.OwnerInterface;

import dataAccess.DB4oManager;
import domain.Owner;

public class OwnerManager extends UnicastRemoteObject implements OwnerInterface {
	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	DB4oManager dbMngr;

	public OwnerManager() throws RemoteException {
		super();
		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
4f8bcc ... Diff Diff epinzolas001 Mon 18 May, 2015 09:49:54 +0000

Merge conflicts solutioned

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.