Git Repository Public Repository

RRRRHHHH_Code

URLs

Copy to Clipboard
 
25898b619dd708c9f15a44200b545cac11404b73
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package common;

import java.rmi.Remote;
import java.rmi.RemoteException;

import domain.Account;

public interface AccountInterface extends Remote{
	

	public boolean addAccount(int index) throws RemoteException;
	
	public boolean removeAccount(Account ac) throws RemoteException;
}

Commits for RRRRHHHH_CoderuralHouses/src/common/AccountInterface.java

Diff revisions: vs.
Revision Author Commited Message
25898b ... Diff Diff camjan Mon 18 May, 2015 15:26:01 +0000

Account adding and deleting fixed

578bec ... Diff Diff epinzolas001 Mon 18 May, 2015 11:44:38 +0000

New owners now can be created properly.

4f8bcc ... epinzolas001 Mon 18 May, 2015 09:49:54 +0000

Merge conflicts solutioned