Merge branch 'master' of https://xp-dev.com/git/RRRRHHHH_Code
[RRRRHHHH_Code] / ruralHouses / src / businessLogic / OwnerManager.java
diff --git a/ruralHouses/src/businessLogic/OwnerManager.java b/ruralHouses/src/businessLogic/OwnerManager.java
deleted file mode 100644 (file)
index 9042bd2..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-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();
-       }
-
-       
-}